[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.

svn path=/trunk/; revision=68551
This commit is contained in:
David Quintana 2015-07-22 13:58:05 +00:00
parent c033464790
commit 300237adee

View file

@ -129,6 +129,15 @@ if not defined ARCH (
) 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