From aa42a78f523f3db5e849663a7c55d949dd25bfb0 Mon Sep 17 00:00:00 2001 From: Brad King Date: Mon, 28 Jul 2014 14:08:10 -0400 Subject: [PATCH] Add WindowsPhone and WindowsStore platform information modules Simply include the "Windows" platform equivalents. This will allow -DCMAKE_SYSTEM_NAME=WindowsPhone or -DCMAKE_SYSTEM_NAME=WindowsStore to select variants of the Windows platform while re-using most of the platform information from "Windows". --- Modules/Platform/WindowsPhone-MSVC-C.cmake | 1 + Modules/Platform/WindowsPhone-MSVC-CXX.cmake | 1 + Modules/Platform/WindowsPhone.cmake | 1 + Modules/Platform/WindowsStore-MSVC-C.cmake | 1 + Modules/Platform/WindowsStore-MSVC-CXX.cmake | 1 + Modules/Platform/WindowsStore.cmake | 1 + 6 files changed, 6 insertions(+) create mode 100644 Modules/Platform/WindowsPhone-MSVC-C.cmake create mode 100644 Modules/Platform/WindowsPhone-MSVC-CXX.cmake create mode 100644 Modules/Platform/WindowsPhone.cmake create mode 100644 Modules/Platform/WindowsStore-MSVC-C.cmake create mode 100644 Modules/Platform/WindowsStore-MSVC-CXX.cmake create mode 100644 Modules/Platform/WindowsStore.cmake diff --git a/Modules/Platform/WindowsPhone-MSVC-C.cmake b/Modules/Platform/WindowsPhone-MSVC-C.cmake new file mode 100644 index 000000000..ce8060bed --- /dev/null +++ b/Modules/Platform/WindowsPhone-MSVC-C.cmake @@ -0,0 +1 @@ +include(Platform/Windows-MSVC-C) diff --git a/Modules/Platform/WindowsPhone-MSVC-CXX.cmake b/Modules/Platform/WindowsPhone-MSVC-CXX.cmake new file mode 100644 index 000000000..281eadc10 --- /dev/null +++ b/Modules/Platform/WindowsPhone-MSVC-CXX.cmake @@ -0,0 +1 @@ +include(Platform/Windows-MSVC-CXX) diff --git a/Modules/Platform/WindowsPhone.cmake b/Modules/Platform/WindowsPhone.cmake new file mode 100644 index 000000000..65b2eaed4 --- /dev/null +++ b/Modules/Platform/WindowsPhone.cmake @@ -0,0 +1 @@ +include(Platform/Windows) diff --git a/Modules/Platform/WindowsStore-MSVC-C.cmake b/Modules/Platform/WindowsStore-MSVC-C.cmake new file mode 100644 index 000000000..ce8060bed --- /dev/null +++ b/Modules/Platform/WindowsStore-MSVC-C.cmake @@ -0,0 +1 @@ +include(Platform/Windows-MSVC-C) diff --git a/Modules/Platform/WindowsStore-MSVC-CXX.cmake b/Modules/Platform/WindowsStore-MSVC-CXX.cmake new file mode 100644 index 000000000..281eadc10 --- /dev/null +++ b/Modules/Platform/WindowsStore-MSVC-CXX.cmake @@ -0,0 +1 @@ +include(Platform/Windows-MSVC-CXX) diff --git a/Modules/Platform/WindowsStore.cmake b/Modules/Platform/WindowsStore.cmake new file mode 100644 index 000000000..65b2eaed4 --- /dev/null +++ b/Modules/Platform/WindowsStore.cmake @@ -0,0 +1 @@ +include(Platform/Windows)