aboutsummaryrefslogtreecommitdiff
path: root/triplets
diff options
context:
space:
mode:
authorAlexander Karatarakis <alkarata@microsoft.com>2018-04-23 19:33:19 -0700
committerAlexander Karatarakis <alkarata@microsoft.com>2018-04-23 19:33:19 -0700
commitf703f60bd0064c3aeb116982812a3745817d30fe (patch)
tree0fd680761435ca105306314f768db23f8431cebe /triplets
parenta11086e3b9d560d3b73de91175c57db658e39809 (diff)
downloadvcpkg-f703f60bd0064c3aeb116982812a3745817d30fe.tar.gz
vcpkg-f703f60bd0064c3aeb116982812a3745817d30fe.zip
Add triplets for x64-linux and x64-osx
Diffstat (limited to 'triplets')
-rw-r--r--triplets/x64-linux.cmake5
-rw-r--r--triplets/x64-osx.cmake5
2 files changed, 10 insertions, 0 deletions
diff --git a/triplets/x64-linux.cmake b/triplets/x64-linux.cmake
new file mode 100644
index 000000000..519618463
--- /dev/null
+++ b/triplets/x64-linux.cmake
@@ -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)
diff --git a/triplets/x64-osx.cmake b/triplets/x64-osx.cmake
new file mode 100644
index 000000000..af3a8c348
--- /dev/null
+++ b/triplets/x64-osx.cmake
@@ -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)