aboutsummaryrefslogtreecommitdiff
path: root/triplets/community
diff options
context:
space:
mode:
Diffstat (limited to 'triplets/community')
-rw-r--r--triplets/community/arm-mingw.cmake6
-rw-r--r--triplets/community/arm64-mingw.cmake6
-rw-r--r--triplets/community/x64-mingw.cmake6
-rw-r--r--triplets/community/x86-mingw.cmake6
4 files changed, 24 insertions, 0 deletions
diff --git a/triplets/community/arm-mingw.cmake b/triplets/community/arm-mingw.cmake
new file mode 100644
index 000000000..ca99fac83
--- /dev/null
+++ b/triplets/community/arm-mingw.cmake
@@ -0,0 +1,6 @@
+set(VCPKG_TARGET_ARCHITECTURE arm)
+set(VCPKG_CRT_LINKAGE dynamic)
+set(VCPKG_LIBRARY_LINKAGE static)
+set(VCPKG_ENV_PASSTHROUGH PATH)
+
+set(VCPKG_CMAKE_SYSTEM_NAME MinGW)
diff --git a/triplets/community/arm64-mingw.cmake b/triplets/community/arm64-mingw.cmake
new file mode 100644
index 000000000..c4d88830f
--- /dev/null
+++ b/triplets/community/arm64-mingw.cmake
@@ -0,0 +1,6 @@
+set(VCPKG_TARGET_ARCHITECTURE arm64)
+set(VCPKG_CRT_LINKAGE dynamic)
+set(VCPKG_LIBRARY_LINKAGE static)
+set(VCPKG_ENV_PASSTHROUGH PATH)
+
+set(VCPKG_CMAKE_SYSTEM_NAME MinGW)
diff --git a/triplets/community/x64-mingw.cmake b/triplets/community/x64-mingw.cmake
new file mode 100644
index 000000000..28600f0cc
--- /dev/null
+++ b/triplets/community/x64-mingw.cmake
@@ -0,0 +1,6 @@
+set(VCPKG_TARGET_ARCHITECTURE x64)
+set(VCPKG_CRT_LINKAGE dynamic)
+set(VCPKG_LIBRARY_LINKAGE static)
+set(VCPKG_ENV_PASSTHROUGH PATH)
+
+set(VCPKG_CMAKE_SYSTEM_NAME MinGW)
diff --git a/triplets/community/x86-mingw.cmake b/triplets/community/x86-mingw.cmake
new file mode 100644
index 000000000..3769b85f0
--- /dev/null
+++ b/triplets/community/x86-mingw.cmake
@@ -0,0 +1,6 @@
+set(VCPKG_TARGET_ARCHITECTURE x86)
+set(VCPKG_CRT_LINKAGE dynamic)
+set(VCPKG_LIBRARY_LINKAGE static)
+set(VCPKG_ENV_PASSTHROUGH PATH)
+
+set(VCPKG_CMAKE_SYSTEM_NAME MinGW)