mirror of
https://github.com/microsoft/vcpkg.git
synced 2025-01-14 06:08:03 +08:00
Add triplets for x64-linux and x64-osx
This commit is contained in:
parent
a11086e3b9
commit
f703f60bd0
4
.gitignore
vendored
4
.gitignore
vendored
@ -279,7 +279,7 @@ downloads/
|
|||||||
installed*/
|
installed*/
|
||||||
packages/
|
packages/
|
||||||
scripts/buildsystems/tmp/
|
scripts/buildsystems/tmp/
|
||||||
#ignore custom triplets
|
#ignore custom triplets
|
||||||
triplets/*
|
triplets/*
|
||||||
#add vcpkg-designed triplets back in
|
#add vcpkg-designed triplets back in
|
||||||
!triplets/arm-uwp.cmake
|
!triplets/arm-uwp.cmake
|
||||||
@ -292,6 +292,8 @@ triplets/*
|
|||||||
!triplets/x86-windows-static.cmake
|
!triplets/x86-windows-static.cmake
|
||||||
!triplets/arm64-uwp.cmake
|
!triplets/arm64-uwp.cmake
|
||||||
!triplets/arm64-windows.cmake
|
!triplets/arm64-windows.cmake
|
||||||
|
!triplets/x64-linux.cmake
|
||||||
|
!triplets/x64-osx.cmake
|
||||||
*.exe
|
*.exe
|
||||||
*.zip
|
*.zip
|
||||||
|
|
||||||
|
5
triplets/x64-linux.cmake
Normal file
5
triplets/x64-linux.cmake
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
set(VCPKG_TARGET_ARCHITECTURE x64)
|
||||||
|
set(VCPKG_CRT_LINKAGE dynamic)
|
||||||
|
set(VCPKG_LIBRARY_LINKAGE static)
|
||||||
|
|
||||||
|
set(VCPKG_CMAKE_SYSTEM_NAME Linux)
|
5
triplets/x64-osx.cmake
Normal file
5
triplets/x64-osx.cmake
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
set(VCPKG_TARGET_ARCHITECTURE x64)
|
||||||
|
set(VCPKG_CRT_LINKAGE dynamic)
|
||||||
|
set(VCPKG_LIBRARY_LINKAGE static)
|
||||||
|
|
||||||
|
set(VCPKG_CMAKE_SYSTEM_NAME Darwin)
|
Loading…
x
Reference in New Issue
Block a user