forked from Azure/azure-storage-cpp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Microsoft.WindowsAzure.Storage.autopkg
92 lines (80 loc) · 3.38 KB
/
Microsoft.WindowsAzure.Storage.autopkg
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
nuget {
nuspec {
id = wastorage;
version: 0.2.0-preview;
title: Microsoft Windows Azure Storage Client Library for C++;
authors: {Microsoft Corporation};
owners: {Microsoft Corporation};
licenseUrl: "http://go.microsoft.com/fwlink/?LinkId=235170";
projectUrl: "http://go.microsoft.com/fwlink/?LinkId=235168";
iconUrl: "http://go.microsoft.com/fwlink/?LinkID=288890";
summary: "A client library for working with Windows Azure storage services including blobs, tables, and queues.";
description: @"This client library enables working with the Windows Azure storage services
which include the blob service for storing binary and text data, the table service for storing
structured non-relational data, and the queue service for storing messages that may be accessed by a client.
Windows Azure Storage team's blog - http://blogs.msdn.com/b/windowsazurestorage/";
releaseNotes: "Preview release";
tags: { Microsoft, Azure, Storage, Table, Blob, Queue, Scalable, windowsazureofficial };
}
dependencies {
packages: {
cpprestsdk/1.3.1
};
}
files {
#defines {
SDK_SRC = \Microsoft.WindowsAzure.Storage;
SDK_2012 = \Microsoft.WindowsAzure.Storage\v110;
SDK_2013 = \Microsoft.WindowsAzure.Storage\v120;
}
nestedWASInclude: {
#destination = ${d_include}\was;
"${SDK_SRC}\includes\was\*",
};
nestedWASCoreInclude: {
#destination = ${d_include}\wascore;
"${SDK_SRC}\includes\wascore\basic_types.h",
"${SDK_SRC}\includes\wascore\constants.h",
};
[x86,v110,debug] {
lib: ${SDK_2012}\Win32\Debug\wastorage.lib;
symbols: ${SDK_2012}\Win32\Debug\wastorage.pdb;
bin: ${SDK_2012}\Win32\Debug\wastorage.dll;
}
[x86,v110,release] {
lib: ${SDK_2012}\Win32\Release\wastorage.lib;
symbols: ${SDK_2012}\Win32\Release\wastorage.pdb;
bin: ${SDK_2012}\Win32\Release\wastorage.dll;
}
[x64,v110,debug] {
lib: ${SDK_2012}\x64\Debug\wastorage.lib;
symbols: ${SDK_2012}\x64\Debug\wastorage.pdb;
bin: ${SDK_2012}\x64\Debug\wastorage.dll;
}
[x64,v110,release] {
lib: ${SDK_2012}\x64\Release\wastorage.lib;
symbols: ${SDK_2012}\x64\Release\wastorage.pdb;
bin: ${SDK_2012}\x64\Release\wastorage.dll;
}
[x86,v120,debug] {
lib: ${SDK_2013}\Win32\Debug\wastorage.lib;
symbols: ${SDK_2013}\Win32\Debug\wastorage.pdb;
bin: ${SDK_2013}\Win32\Debug\wastorage.dll;
}
[x86,v120,release] {
lib: ${SDK_2013}\Win32\Release\wastorage.lib;
symbols: ${SDK_2013}\Win32\Release\wastorage.pdb;
bin: ${SDK_2013}\Win32\Release\wastorage.dll;
}
[x64,v120,debug] {
lib: ${SDK_2013}\x64\Debug\wastorage.lib;
symbols: ${SDK_2013}\x64\Debug\wastorage.pdb;
bin: ${SDK_2013}\x64\Debug\wastorage.dll;
}
[x64,v120,release] {
lib: ${SDK_2013}\x64\Release\wastorage.lib;
symbols: ${SDK_2013}\x64\Release\wastorage.pdb;
bin: ${SDK_2013}\x64\Release\wastorage.dll;
}
}
}