diff options
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 |
