Author: dquintana
Date: Wed Jul 22 13:58:05 2015
New Revision: 68551
URL:
http://svn.reactos.org/svn/reactos?rev=68551&view=rev
Log:
[CONFIGURE.CMD]
Add a case for VSSolution generation with VS14. It DOES NOT WORK with the cmake version we
use currently, but it's better to have the error rather than generating ninja files
without warning.
Modified:
trunk/reactos/configure.cmd
Modified: trunk/reactos/configure.cmd
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/configure.cmd?rev=68551&am…
==============================================================================
--- trunk/reactos/configure.cmd [iso-8859-1] (original)
+++ trunk/reactos/configure.cmd [iso-8859-1] Wed Jul 22 13:58:05 2015
@@ -129,6 +129,15 @@
) else (
set CMAKE_GENERATOR="Visual Studio 12"
)
+ ) else if "!VS_VERSION!" == "14" (
+ if "!ARCH!" == "amd64" (
+ set CMAKE_GENERATOR="Visual Studio 14 Win64"
+ ) else if "!ARCH!" == "arm" (
+ set CMAKE_GENERATOR="Visual Studio 14 ARM"
+ set CMAKE_GENERATOR_HOST="Visual Studio 14"
+ ) else (
+ set CMAKE_GENERATOR="Visual Studio 14"
+ )
)
) else if /I "%1" == "RTC" (
echo Runtime checks enabled