|
| 1 | +configurations { |
| 2 | + Toolset { |
| 3 | + key : "PlatformToolset"; |
| 4 | + choices: { v140, v120 }; |
| 5 | + }; |
| 6 | +} |
| 7 | + |
| 8 | +nuget { |
| 9 | + // The nuspec file metadata. |
| 10 | + nuspec { |
| 11 | + |
| 12 | + // Unique package identifier |
| 13 | + id = AWSSDKCPP-AccessManagement; |
| 14 | + |
| 15 | + // Version number. Follows NuGet standards. (currently SemVer 1.0) |
| 16 | + version : 1.0.1; |
| 17 | + |
| 18 | + // Display name for package. |
| 19 | + title: AWS SDK for C++ (Access Management); |
| 20 | + |
| 21 | + // List of package authors. Braces may be ommited if only one author. |
| 22 | + authors: Amazon Web Services; |
| 23 | + |
| 24 | + // URL link to the license this package is released under. |
| 25 | + licenseUrl: "http://aws.amazon.com/apache2.0/"; |
| 26 | + |
| 27 | + // URL to the project website (if any). |
| 28 | + projectUrl: "http://github.com/aws/aws-sdk-cpp"; |
| 29 | + |
| 30 | + // URL to an image to be used for package icons. |
| 31 | + iconUrl: "http://media.amazonwebservices.com/aws_singlebox_01.png"; |
| 32 | + |
| 33 | + // If the license this package is being released |
| 34 | + // under has use restrictions, set this to "true". |
| 35 | + requireLicenseAcceptance:false; |
| 36 | + |
| 37 | + summary: "v120 and v140 binary packages along with header files. No custom memory management. Standard Compiler flags used. For more info, see https://github.com/aws/aws-sdk-cpp/blob/master/README.md"; |
| 38 | + |
| 39 | + // Extended description of the package contents. |
| 40 | + description: "Access Management API for AWS SDK for C++. AWS SDK for C++ provides a modern C++ (version C++ 11 or later) interface for Amazon Web Services (AWS). It is meant to be performant and fully functioning with low- and high-level SDKs, while minimizing dependencies and providing platform portability (Windows, OSX, Linux, and mobile)."; |
| 41 | + |
| 42 | + // Copyright notice. |
| 43 | + copyright: Copyright 2016; |
| 44 | + |
| 45 | + // Tags of arbitrary text for categorizing and filtering. |
| 46 | + tags: { AWS, Amazon, cloud, aws-sdk-cpp, native, aws-cpp-sdk-iam, access-management }; |
| 47 | + }; |
| 48 | + |
| 49 | + dependencies { |
| 50 | + packages: { |
| 51 | + AWSSDKCPP-Core/1.0 |
| 52 | + AWSSDKCPP-CognitoIdentity/1.0.20140630 |
| 53 | + AWSSDKCPP-IAM/1.0.20100508 |
| 54 | + } |
| 55 | + } |
| 56 | + |
| 57 | + files { |
| 58 | + // All .h and .hpp files in <src_root>\include, but not in subdirectories. |
| 59 | + // Included for all conditions. |
| 60 | + nestedInclude: { |
| 61 | + #destination = ${d_include}\aws\access-management; |
| 62 | + "..\include\aws\access-management\**\*.h" |
| 63 | + }; |
| 64 | + |
| 65 | + // Include these specific files in the libpath and "copy to output" path only |
| 66 | + // under these pivot conditions. |
| 67 | + [x64,release,v140,dynamic] { // x64, dll (dynamic linking) |
| 68 | + lib+= { ..\bin\windows\intel64\vs2015\release\aws-cpp-sdk-access-management.lib }; |
| 69 | + bin+= { ..\bin\windows\intel64\vs2015\release\aws-cpp-sdk-access-management.dll }; |
| 70 | + |
| 71 | + symbols+= { ..\bin\windows\intel64\vs2015\release\aws-cpp-sdk-access-management.pdb }; |
| 72 | + } |
| 73 | + |
| 74 | + [x64,release,v120,dynamic] { // x64, dll (dynamic linking) |
| 75 | + lib+= { ..\bin\windows\intel64\vs2013\release\aws-cpp-sdk-access-management.lib }; |
| 76 | + bin+= { ..\bin\windows\intel64\vs2013\release\aws-cpp-sdk-access-management.dll }; |
| 77 | + |
| 78 | + symbols+= { ..\bin\windows\intel64\vs2013\release\aws-cpp-sdk-access-management.pdb }; |
| 79 | + } |
| 80 | + |
| 81 | + [x64,debug,v140,dynamic] { // x64, dll (dynamic linking) |
| 82 | + lib+= { ..\bin\windows\intel64\vs2015\debug\aws-cpp-sdk-access-management.lib }; |
| 83 | + bin+= { ..\bin\windows\intel64\vs2015\debug\aws-cpp-sdk-access-management.dll }; |
| 84 | + |
| 85 | + symbols+= { ..\bin\windows\intel64\vs2015\debug\aws-cpp-sdk-access-management.pdb }; |
| 86 | + } |
| 87 | + |
| 88 | + [x64,debug,v120,dynamic] { // x64, dll (dynamic linking) |
| 89 | + lib+= { ..\bin\windows\intel64\vs2013\debug\aws-cpp-sdk-access-management.lib }; |
| 90 | + bin+= { ..\bin\windows\intel64\vs2013\debug\aws-cpp-sdk-access-management.dll }; |
| 91 | + |
| 92 | + symbols+= { ..\bin\windows\intel64\vs2013\debug\aws-cpp-sdk-access-management.pdb }; |
| 93 | + } |
| 94 | + |
| 95 | + [x64,release,v140,static] { // x64, static linking |
| 96 | + lib+= { ..\lib\windows\intel64\vs2015\release\aws-cpp-sdk-access-management.lib }; |
| 97 | + } |
| 98 | + |
| 99 | + [x64,release,v120,static] { // x64, static linking |
| 100 | + lib+= { ..\lib\windows\intel64\vs2013\release\aws-cpp-sdk-access-management.lib }; |
| 101 | + } |
| 102 | + |
| 103 | + [x64,debug,v140,static] { // x64, static linking |
| 104 | + lib+= { ..\lib\windows\intel64\vs2015\debug\aws-cpp-sdk-access-management.lib }; |
| 105 | + } |
| 106 | + |
| 107 | + [x64,debug,v120,static] { // x64, static linking |
| 108 | + lib+= { ..\lib\windows\intel64\vs2013\debug\aws-cpp-sdk-access-management.lib }; |
| 109 | + } |
| 110 | + |
| 111 | + [x86,release,v140,dynamic] { // x86, dll (dynamic linking) |
| 112 | + lib+= { ..\bin\windows\ia32\vs2015\release\aws-cpp-sdk-access-management.lib }; |
| 113 | + bin+= { ..\bin\windows\ia32\vs2015\release\aws-cpp-sdk-access-management.dll }; |
| 114 | + |
| 115 | + symbols+= { ..\bin\windows\ia32\vs2015\release\aws-cpp-sdk-access-management.pdb }; |
| 116 | + |
| 117 | + } |
| 118 | + |
| 119 | + [x86,release,v120,dynamic] { // x86, dll (dynamic linking) |
| 120 | + lib+= { ..\bin\windows\ia32\vs2013\release\aws-cpp-sdk-access-management.lib }; |
| 121 | + bin+= { ..\bin\windows\ia32\vs2013\release\aws-cpp-sdk-access-management.dll }; |
| 122 | + |
| 123 | + symbols+= { ..\bin\windows\ia32\vs2013\release\aws-cpp-sdk-access-management.pdb }; |
| 124 | + } |
| 125 | + |
| 126 | + [x86,debug,v140,dynamic] { // x86, dll (dynamic linking) |
| 127 | + lib+= { ..\bin\windows\ia32\vs2015\debug\aws-cpp-sdk-access-management.lib }; |
| 128 | + bin+= { ..\bin\windows\ia32\vs2015\debug\aws-cpp-sdk-access-management.dll }; |
| 129 | + |
| 130 | + symbols+= { ..\bin\windows\ia32\vs2015\debug\aws-cpp-sdk-access-management.pdb }; |
| 131 | + } |
| 132 | + |
| 133 | + [x86,debug,v120,dynamic] { // x86, dll (dynamic linking) |
| 134 | + lib+= { ..\bin\windows\ia32\vs2013\debug\aws-cpp-sdk-access-management.lib }; |
| 135 | + bin+= { ..\bin\windows\ia32\vs2013\debug\aws-cpp-sdk-access-management.dll }; |
| 136 | + |
| 137 | + symbols+= { ..\bin\windows\ia32\vs2013\debug\aws-cpp-sdk-access-management.pdb }; |
| 138 | + } |
| 139 | + |
| 140 | + [x86,release,v140,static] { // x86, static linking |
| 141 | + lib+= { ..\lib\windows\ia32\vs2015\release\aws-cpp-sdk-access-management.lib }; |
| 142 | + } |
| 143 | + |
| 144 | + [x86,release,v120,static] { // x86, static linking |
| 145 | + lib+= { ..\lib\windows\ia32\vs2013\release\aws-cpp-sdk-access-management.lib }; |
| 146 | + } |
| 147 | + |
| 148 | + [x86,debug,v140,static] { // x86, static linking |
| 149 | + lib+= { ..\lib\windows\ia32\vs2015\debug\aws-cpp-sdk-access-management.lib }; |
| 150 | + } |
| 151 | + |
| 152 | + [x86,debug,v120,static] { // x86, static linking |
| 153 | + lib+= { ..\lib\windows\ia32\vs2013\debug\aws-cpp-sdk-access-management.lib }; |
| 154 | + } |
| 155 | + }; |
| 156 | + |
| 157 | + targets { |
| 158 | + // Additional declarations to insert into consuming projects after most of the |
| 159 | + // project settings. (These may NOT be modified in visual studio by a developer |
| 160 | + // consuming this package.) |
| 161 | + // This node is often used to set defines that are required that must be set by |
| 162 | + // the consuming project in order to correctly link to the libraries in this |
| 163 | + // package. Such defines may be set either globally or only set under specific |
| 164 | + // conditions. |
| 165 | + [dynamic] |
| 166 | + Defines += USE_IMPORT_EXPORT; |
| 167 | + } |
| 168 | +} |
0 commit comments