From faddd9351a04a1106b28935ddddcbb05798b3a36 Mon Sep 17 00:00:00 2001 From: Ankur Verma <31362771+ankurvdev@users.noreply.github.com> Date: Mon, 16 Jan 2023 12:12:15 -0800 Subject: [PATCH] Create *uwp-static-md community triplets (#28898) * Squashed * Update arm-uwp-static-md.cmake * Update x64-uwp-static-md.cmake * Update arm64-uwp-static-md.cmake * Update x86-uwp-static-md.cmake Co-authored-by: Ankur Verma --- triplets/community/arm-uwp-static-md.cmake | 5 +++++ triplets/community/arm64-uwp-static-md.cmake | 5 +++++ triplets/community/x64-uwp-static-md.cmake | 5 +++++ triplets/community/x86-uwp-static-md.cmake | 5 +++++ 4 files changed, 20 insertions(+) create mode 100644 triplets/community/arm-uwp-static-md.cmake create mode 100644 triplets/community/arm64-uwp-static-md.cmake create mode 100644 triplets/community/x64-uwp-static-md.cmake create mode 100644 triplets/community/x86-uwp-static-md.cmake diff --git a/triplets/community/arm-uwp-static-md.cmake b/triplets/community/arm-uwp-static-md.cmake new file mode 100644 index 0000000000..3e73ff90ab --- /dev/null +++ b/triplets/community/arm-uwp-static-md.cmake @@ -0,0 +1,5 @@ +set(VCPKG_TARGET_ARCHITECTURE arm) +set(VCPKG_CRT_LINKAGE dynamic) +set(VCPKG_LIBRARY_LINKAGE static) +set(VCPKG_CMAKE_SYSTEM_NAME WindowsStore) +set(VCPKG_CMAKE_SYSTEM_VERSION 10.0) diff --git a/triplets/community/arm64-uwp-static-md.cmake b/triplets/community/arm64-uwp-static-md.cmake new file mode 100644 index 0000000000..c99b9e6a08 --- /dev/null +++ b/triplets/community/arm64-uwp-static-md.cmake @@ -0,0 +1,5 @@ +set(VCPKG_TARGET_ARCHITECTURE arm64) +set(VCPKG_CRT_LINKAGE dynamic) +set(VCPKG_LIBRARY_LINKAGE static) +set(VCPKG_CMAKE_SYSTEM_NAME WindowsStore) +set(VCPKG_CMAKE_SYSTEM_VERSION 10.0) diff --git a/triplets/community/x64-uwp-static-md.cmake b/triplets/community/x64-uwp-static-md.cmake new file mode 100644 index 0000000000..309631a0c4 --- /dev/null +++ b/triplets/community/x64-uwp-static-md.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 WindowsStore) +set(VCPKG_CMAKE_SYSTEM_VERSION 10.0) diff --git a/triplets/community/x86-uwp-static-md.cmake b/triplets/community/x86-uwp-static-md.cmake new file mode 100644 index 0000000000..0c72e3c9d3 --- /dev/null +++ b/triplets/community/x86-uwp-static-md.cmake @@ -0,0 +1,5 @@ +set(VCPKG_TARGET_ARCHITECTURE x86) +set(VCPKG_CRT_LINKAGE dynamic) +set(VCPKG_LIBRARY_LINKAGE static) +set(VCPKG_CMAKE_SYSTEM_NAME WindowsStore) +set(VCPKG_CMAKE_SYSTEM_VERSION 10.0)