aboutsummaryrefslogtreecommitdiff
path: root/triplets/community
diff options
context:
space:
mode:
authorVictor Romero <romerosanchezv@gmail.com>2020-01-17 14:21:19 -0800
committerGitHub <noreply@github.com>2020-01-17 14:21:19 -0800
commitf56645c3fd9a1561c430e90ce00836489b372ef8 (patch)
tree6621f8dd902d8f6a4ad6d3cdff5a3659686c1159 /triplets/community
parentbf3e071e53bf46cba8857859f853dcc8898db817 (diff)
downloadvcpkg-f56645c3fd9a1561c430e90ce00836489b372ef8.tar.gz
vcpkg-f56645c3fd9a1561c430e90ce00836489b372ef8.zip
Community Triplets 🤝 (#7976)
* Move untested triplets to Community Triplets * Document community triplets * Load community triplets by default and alert when using one * [triplets] Merge documentation of community triplets * Bump version
Diffstat (limited to 'triplets/community')
-rw-r--r--triplets/community/arm-windows.cmake5
-rw-r--r--triplets/community/arm64-uwp.cmake6
-rw-r--r--triplets/community/x86-uwp.cmake6
-rw-r--r--triplets/community/x86-windows-static.cmake3
4 files changed, 20 insertions, 0 deletions
diff --git a/triplets/community/arm-windows.cmake b/triplets/community/arm-windows.cmake
new file mode 100644
index 000000000..3aa75933f
--- /dev/null
+++ b/triplets/community/arm-windows.cmake
@@ -0,0 +1,5 @@
+set(VCPKG_TARGET_ARCHITECTURE arm)
+set(VCPKG_CRT_LINKAGE dynamic)
+set(VCPKG_LIBRARY_LINKAGE dynamic)
+
+
diff --git a/triplets/community/arm64-uwp.cmake b/triplets/community/arm64-uwp.cmake
new file mode 100644
index 000000000..b37c34e87
--- /dev/null
+++ b/triplets/community/arm64-uwp.cmake
@@ -0,0 +1,6 @@
+set(VCPKG_TARGET_ARCHITECTURE arm64)
+set(VCPKG_CRT_LINKAGE dynamic)
+set(VCPKG_LIBRARY_LINKAGE dynamic)
+
+set(VCPKG_CMAKE_SYSTEM_NAME WindowsStore)
+set(VCPKG_CMAKE_SYSTEM_VERSION 10.0)
diff --git a/triplets/community/x86-uwp.cmake b/triplets/community/x86-uwp.cmake
new file mode 100644
index 000000000..13b9d77c2
--- /dev/null
+++ b/triplets/community/x86-uwp.cmake
@@ -0,0 +1,6 @@
+set(VCPKG_TARGET_ARCHITECTURE x86)
+set(VCPKG_CRT_LINKAGE dynamic)
+set(VCPKG_LIBRARY_LINKAGE dynamic)
+
+set(VCPKG_CMAKE_SYSTEM_NAME WindowsStore)
+set(VCPKG_CMAKE_SYSTEM_VERSION 10.0)
diff --git a/triplets/community/x86-windows-static.cmake b/triplets/community/x86-windows-static.cmake
new file mode 100644
index 000000000..c855f0caa
--- /dev/null
+++ b/triplets/community/x86-windows-static.cmake
@@ -0,0 +1,3 @@
+set(VCPKG_TARGET_ARCHITECTURE x86)
+set(VCPKG_CRT_LINKAGE static)
+set(VCPKG_LIBRARY_LINKAGE static) \ No newline at end of file