diff options
| author | Alexander Karatarakis <alkarata@microsoft.com> | 2016-09-18 20:50:08 -0700 |
|---|---|---|
| committer | Alexander Karatarakis <alkarata@microsoft.com> | 2016-09-18 20:54:03 -0700 |
| commit | ccca198c1b1730b0241911cb56dc8e3504958b2a (patch) | |
| tree | a2dd9b8b087a09afdcecc5cbb3377bed15127eb2 /triplets | |
| download | vcpkg-ccca198c1b1730b0241911cb56dc8e3504958b2a.tar.gz vcpkg-ccca198c1b1730b0241911cb56dc8e3504958b2a.zip | |
Initial commit
Diffstat (limited to 'triplets')
| -rw-r--r-- | triplets/arm-uwp.cmake | 6 | ||||
| -rw-r--r-- | triplets/x64-uwp.cmake | 6 | ||||
| -rw-r--r-- | triplets/x64-windows.cmake | 0 | ||||
| -rw-r--r-- | triplets/x86-uwp.cmake | 6 | ||||
| -rw-r--r-- | triplets/x86-windows.cmake | 0 |
5 files changed, 18 insertions, 0 deletions
diff --git a/triplets/arm-uwp.cmake b/triplets/arm-uwp.cmake new file mode 100644 index 000000000..bf88711de --- /dev/null +++ b/triplets/arm-uwp.cmake @@ -0,0 +1,6 @@ +set(CMAKE_SYSTEM_NAME WindowsStore) +set(CMAKE_SYSTEM_VERSION 10.0) + +if(NOT CMAKE_GENERATOR MATCHES "Visual Studio 14 2015 ARM") + message(FATAL_ERROR "Visual Studio Generator must be used to target UWP") +endif() diff --git a/triplets/x64-uwp.cmake b/triplets/x64-uwp.cmake new file mode 100644 index 000000000..53c680bc8 --- /dev/null +++ b/triplets/x64-uwp.cmake @@ -0,0 +1,6 @@ +set(CMAKE_SYSTEM_NAME WindowsStore) +set(CMAKE_SYSTEM_VERSION 10.0) + +if(NOT CMAKE_GENERATOR MATCHES "Visual Studio 14 2015 Win64") + message(FATAL_ERROR "Visual Studio Generator must be used to target UWP.") +endif() diff --git a/triplets/x64-windows.cmake b/triplets/x64-windows.cmake new file mode 100644 index 000000000..e69de29bb --- /dev/null +++ b/triplets/x64-windows.cmake diff --git a/triplets/x86-uwp.cmake b/triplets/x86-uwp.cmake new file mode 100644 index 000000000..a0c5601bb --- /dev/null +++ b/triplets/x86-uwp.cmake @@ -0,0 +1,6 @@ +set(CMAKE_SYSTEM_NAME WindowsStore) +set(CMAKE_SYSTEM_VERSION 10.0) + +if(NOT CMAKE_GENERATOR MATCHES "Visual Studio 14 2015") + message(FATAL_ERROR "Visual Studio Generator must be used to target UWP") +endif() diff --git a/triplets/x86-windows.cmake b/triplets/x86-windows.cmake new file mode 100644 index 000000000..e69de29bb --- /dev/null +++ b/triplets/x86-windows.cmake |
