Skip to content

Commit ef603e3

Browse files
committed
Adding android nuspec
1 parent 1681627 commit ef603e3

File tree

2 files changed

+98
-0
lines changed

2 files changed

+98
-0
lines changed
+44
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<package>
3+
<metadata>
4+
<id>cpprestsdk.android</id>
5+
<version>2.3.0.0</version>
6+
<title>C++ REST SDK</title>
7+
<authors>casablancacore</authors>
8+
<owners>Microsoft, Visual C++</owners>
9+
<licenseUrl>http://www.apache.org/licenses/LICENSE-2.0</licenseUrl>
10+
<projectUrl>https://casablanca.codeplex.com/</projectUrl>
11+
<iconUrl>https://download-codeplex.sec.s-msft.com/Download?ProjectName=casablanca&amp;DownloadId=630102&amp;Build=20425</iconUrl>
12+
<requireLicenseAcceptance>false</requireLicenseAcceptance>
13+
<summary>The C++ REST SDK is a cross-platform, modern, and asynchronous library that enables developers to access and author connected applications</summary>
14+
<description>This library is a Microsoft effort to support cloud-based client-server communication in native code using a modern asynchronous C++ API design. The C++ REST SDK (codename "Casablanca") is a project to start exploring how to best support C++ developers who want to take advantage of the radical shift in software architecture that cloud computing represents.</description>
15+
<releaseNotes>Release of C++ Rest SDK 2.3.0 libraries for android.</releaseNotes>
16+
<copyright>Copyright 2014</copyright>
17+
<tags>REST, native, C++, JSON, Casablanca, Http, Uri, WebSockets, android</tags>
18+
<dependencies>
19+
<dependency id="boost" version="[1.55, 1.56)" />
20+
<dependency id="boost_atomic-android" version="[1.55, 1.56)" />
21+
<dependency id="boost_chrono-android" version="[1.55, 1.56)" />
22+
<dependency id="boost_date_time-android" version="[1.55, 1.56)" />
23+
<dependency id="boost_filesystem-android" version="[1.55, 1.56)" />
24+
<dependency id="boost_locale-android" version="[1.55, 1.56)" />
25+
<dependency id="boost_system-android" version="[1.55, 1.56)" />
26+
<dependency id="boost_thread-android" version="[1.55, 1.56)" />
27+
<dependency id="openssl-android" version="[1.0.1, 1.0.2)" />
28+
</dependencies>
29+
</metadata>
30+
<files>
31+
<!-- Include header files-->
32+
<file src="..\include\**\*" target="\build\native\include\" />
33+
34+
<!-- clang-3.4 -->
35+
<file src="..\..\Binaries\ARM\Release\cpprest140_android_2_3.a" target="\build\native\lib\arm\libcpprest-clang_3_4-gnustl-2_3.a" />
36+
<file src="..\..\Binaries\ARM\Debug\cpprest140d_android_2_3.a" target="\build\native\lib\arm\libcpprest-clang_3_4-d-gnustl-2_3.a" />
37+
38+
<!-- Including license for WebSocket++ -->
39+
<file src="..\libs\websocketpp\COPYING" target="\license\websocketpp\COPYING" />
40+
41+
<!-- vs targets file -->
42+
<file src="cpprestsdk.android.targets" target="\build\native\cpprestsdk.android.targets"/>
43+
</files>
44+
</package>
+54
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<PropertyGroup>
4+
<CppRestSDKVersionMajor>2</CppRestSDKVersionMajor>
5+
<CppRestSDKVersionMinor>3</CppRestSDKVersionMinor>
6+
<CppRestSDKVersionRevision>0</CppRestSDKVersionRevision>
7+
<CppRestSDKVersionFileSuffix>$(CppRestSDKVersionMajor)_$(CppRestSDKVersionMinor)</CppRestSDKVersionFileSuffix>
8+
</PropertyGroup>
9+
10+
<ItemDefinitionGroup>
11+
<ClCompile>
12+
<PreprocessorDefinitions>HAS_CPPRESTSDK;%(PreprocessorDefinitions)</PreprocessorDefinitions>
13+
<AdditionalIncludeDirectories>$(MSBuildThisFileDirectory)include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
14+
</ClCompile>
15+
<Link>
16+
<LibraryDependencies>m;%(LibraryDependencies)</LibraryDependencies>
17+
</Link>
18+
</ItemDefinitionGroup>
19+
20+
<ItemGroup>
21+
<CppRestSDKTargetDependencies Include="boost_atomic_android_PreLink" />
22+
<CppRestSDKTargetDependencies Include="boost_chrono_android_PreLink" />
23+
<CppRestSDKTargetDependencies Include="boost_date_time_android_PreLink" />
24+
<CppRestSDKTargetDependencies Include="boost_filesystem_android_PreLink" />
25+
<CppRestSDKTargetDependencies Include="boost_locale_android_PreLink" />
26+
<CppRestSDKTargetDependencies Include="boost_system_android_PreLink" />
27+
<CppRestSDKTargetDependencies Include="boost_thread_android_PreLink" />
28+
<CppRestSDKTargetDependencies Include="openssl_android_PreLink" />
29+
</ItemGroup>
30+
31+
<Target Name="cpprestsdk_android_PreLink" BeforeTargets="@(CppRestSDKTargetDependencies);Link" DependsOnTargets="$(ComputeLinkInputsTargets)">
32+
<!-- ARM and Clang and GNUSTL and Debug -->
33+
<ItemGroup Condition="'$(Platform)' == 'ARM' And '$(PlatformToolset)' == 'Clang_3_4' And ('$(UseOfStl)' == 'gnustl_shared' Or '$(UseOfStl)' == 'gnustl_static') And '$(UseDebugLibraries)' == 'true'">
34+
<Link Include="$(MSBuildThisFileDirectory)lib\arm\libcpprest-clang_3_4-d-gnustl-$(CppRestSDKVersionFileSuffix).a" />
35+
</ItemGroup>
36+
<!-- ARM and Clang and GNUSTL and Release -->
37+
<ItemGroup Condition="'$(Platform)' == 'ARM' And '$(PlatformToolset)' == 'Clang_3_4' And ('$(UseOfStl)' == 'gnustl_shared' Or '$(UseOfStl)' == 'gnustl_static') And '$(UseDebugLibraries)' != 'true'">
38+
<Link Include="$(MSBuildThisFileDirectory)lib\arm\libcpprest-clang_3_4-gnustl-$(CppRestSDKVersionFileSuffix).a" />
39+
</ItemGroup>
40+
41+
<Error
42+
Condition="'$(PlatformToolset)' != 'Clang_3_4'"
43+
Text="The cpprestsdk.android NuGet package only contains binaries for Clang 3.4."
44+
/>
45+
<Error
46+
Condition="'$(UseOfStl)' != 'gnustl_shared' And '$(UseOfStl)' != 'gnustl_static'"
47+
Text="cpprestsdk requires linking against the gnustl. Please set Project Properties -> Configuration Properties -> General -> Use of STL to be 'gnustl_static'."
48+
/>
49+
<Error
50+
Condition="'$(Platform)' != 'ARM'"
51+
Text="The cpprestsdk.android NuGet package only contains binaries for the ARM architecture."
52+
/>
53+
</Target>
54+
</Project>

0 commit comments

Comments
 (0)