diff options
| author | atkawa7 <atkawa7@yahoo.com> | 2020-04-06 23:36:17 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-04-06 14:36:17 -0700 |
| commit | 52b5dfd2efbc576a3073fe335e7694f5d4d4c143 (patch) | |
| tree | 086e21106b477cc11fcba5f7c7025ab162eff688 /toolsrc/vcpkglib | |
| parent | 6283a51112ed7bb1a3da46d9f181c075118a836e (diff) | |
| download | vcpkg-52b5dfd2efbc576a3073fe335e7694f5d4d4c143.tar.gz vcpkg-52b5dfd2efbc576a3073fe335e7694f5d4d4c143.zip | |
Android Support: Exporting to Android Archive (AAR) (#10271)
* added android triplets
* added android support to vcpkg
* added export directories to git ignore
* fix libraries naming
* added vckpg sources to visual studio project files
* rename file location
* issue with std::string fs:path copy initialization
* format path on VStudio
* fix checks format cannot work on fs::path
* support header only libraries
* support using architecture instead of triplets
* added prefab support
* added debug logs and prefab debug flag
* added support for empty packages i.e openssl
Diffstat (limited to 'toolsrc/vcpkglib')
| -rw-r--r-- | toolsrc/vcpkglib/vcpkglib.vcxproj | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/toolsrc/vcpkglib/vcpkglib.vcxproj b/toolsrc/vcpkglib/vcpkglib.vcxproj index fc6d37de7..78a2cc322 100644 --- a/toolsrc/vcpkglib/vcpkglib.vcxproj +++ b/toolsrc/vcpkglib/vcpkglib.vcxproj @@ -179,6 +179,7 @@ <ClInclude Include="..\include\vcpkg\export.chocolatey.h" />
<ClInclude Include="..\include\vcpkg\export.h" />
<ClInclude Include="..\include\vcpkg\export.ifw.h" />
+ <ClInclude Include="..\include\vcpkg\export.prefab.h" />
<ClInclude Include="..\include\vcpkg\globalstate.h" />
<ClInclude Include="..\include\vcpkg\help.h" />
<ClInclude Include="..\include\vcpkg\input.h" />
@@ -258,6 +259,7 @@ <ClCompile Include="..\src\vcpkg\dependencies.cpp" />
<ClCompile Include="..\src\vcpkg\export.cpp" />
<ClCompile Include="..\src\vcpkg\export.chocolatey.cpp" />
+ <ClCompile Include="..\src\vcpkg\export.prefab.cpp" />
<ClCompile Include="..\src\vcpkg\globalstate.cpp" />
<ClCompile Include="..\src\vcpkg\help.cpp" />
<ClCompile Include="..\src\vcpkg\input.cpp" />
|
