aboutsummaryrefslogtreecommitdiff
path: root/triplets
diff options
context:
space:
mode:
authorVictor Romero <romerosanchezv@gmail.com>2020-02-12 11:46:40 -0800
committerGitHub <noreply@github.com>2020-02-12 11:46:40 -0800
commit71a9def3df1cd418a8c00e69413f19507ab25fa8 (patch)
tree36705b4f571dee4f1f3a533ff7041c75de3bfdb9 /triplets
parent7365cd74ef79a1f5f7a7bd6ff064a3e573ca4baa (diff)
downloadvcpkg-71a9def3df1cd418a8c00e69413f19507ab25fa8.tar.gz
vcpkg-71a9def3df1cd418a8c00e69413f19507ab25fa8.zip
Add triplets for static libraries with dynamic CRT on Windows (#10028)
* Add triplets for static libs with dynamic CRT * Update .gitignore
Diffstat (limited to 'triplets')
-rw-r--r--triplets/community/x64-windows-static-md.cmake3
-rw-r--r--triplets/community/x86-windows-static-md.cmake3
2 files changed, 6 insertions, 0 deletions
diff --git a/triplets/community/x64-windows-static-md.cmake b/triplets/community/x64-windows-static-md.cmake
new file mode 100644
index 000000000..d7acd46a4
--- /dev/null
+++ b/triplets/community/x64-windows-static-md.cmake
@@ -0,0 +1,3 @@
+set(VCPKG_TARGET_ARCHITECTURE x64)
+set(VCPKG_CRT_LINKAGE dynamic)
+set(VCPKG_LIBRARY_LINKAGE static)
diff --git a/triplets/community/x86-windows-static-md.cmake b/triplets/community/x86-windows-static-md.cmake
new file mode 100644
index 000000000..22abeaf2d
--- /dev/null
+++ b/triplets/community/x86-windows-static-md.cmake
@@ -0,0 +1,3 @@
+set(VCPKG_TARGET_ARCHITECTURE x86)
+set(VCPKG_CRT_LINKAGE dynamic)
+set(VCPKG_LIBRARY_LINKAGE static)