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 /.gitignore | |
| 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 '.gitignore')
| -rw-r--r-- | .gitignore | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore index 86fd538f6..eba62b6f6 100644 --- a/.gitignore +++ b/.gitignore @@ -304,6 +304,10 @@ __pycache__/ !triplets/community/x86-windows-static.cmake !triplets/community/x86-windows-static-md.cmake !triplets/community/x64-osx-dynamic.cmake +!triplets/community/x64-android.cmake +!triplets/community/x86-android.cmake +!triplets/community/arm-android.cmake +!triplets/community/arm64-android.cmake !triplets/arm-uwp.cmake !triplets/x64-uwp.cmake !triplets/x64-windows.cmake @@ -320,3 +324,5 @@ __pycache__/ # vcpkg - End ############################################################ archives +.DS_Store +prefab/
\ No newline at end of file |
