mirror of
https://github.com/microsoft/vcpkg
synced 2024-11-20 16:06:00 -07:00
Add triplets for x64-linux and x64-osx
This commit is contained in:
parent
a11086e3b9
commit
f703f60bd0
3 changed files with 13 additions and 1 deletions
4
.gitignore
vendored
4
.gitignore
vendored
|
@ -279,7 +279,7 @@ downloads/
|
|||
installed*/
|
||||
packages/
|
||||
scripts/buildsystems/tmp/
|
||||
#ignore custom triplets
|
||||
#ignore custom triplets
|
||||
triplets/*
|
||||
#add vcpkg-designed triplets back in
|
||||
!triplets/arm-uwp.cmake
|
||||
|
@ -292,6 +292,8 @@ triplets/*
|
|||
!triplets/x86-windows-static.cmake
|
||||
!triplets/arm64-uwp.cmake
|
||||
!triplets/arm64-windows.cmake
|
||||
!triplets/x64-linux.cmake
|
||||
!triplets/x64-osx.cmake
|
||||
*.exe
|
||||
*.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…
Reference in a new issue