mirror of
https://github.com/cemu-project/vcpkg.git
synced 2024-11-23 11:19:43 +00:00
Add triplets for x64-linux and x64-osx
This commit is contained in:
parent
a11086e3b9
commit
f703f60bd0
2
.gitignore
vendored
2
.gitignore
vendored
@ -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 New Issue
Block a user