- Fix MSVC version detection in configure.cmd
CORE-7337 #comment VS12 is not supported by CMake yet. With r59381, configure should at least give you a proper error message.

svn path=/trunk/; revision=59381
This commit is contained in:
Thomas Faber 2013-06-30 08:28:05 +00:00
parent 971e49a62d
commit 94167fa6cb

View file

@ -57,10 +57,10 @@ if defined ROS_ARCH (
cl 2>&1 | find "x86" > NUL && set ARCH=i386
cl 2>&1 | find "x64" > NUL && set ARCH=amd64
cl 2>&1 | find "ARM" > NUL && set ARCH=arm
cl 2>&1 | find "14." > NUL && set BUILD_ENVIRONMENT=VS8
cl 2>&1 | find "15." > NUL && set BUILD_ENVIRONMENT=VS9
cl 2>&1 | find "16." > NUL && set BUILD_ENVIRONMENT=VS10
cl 2>&1 | find "17." > NUL && set BUILD_ENVIRONMENT=VS11
cl 2>&1 | find " 14." > NUL && set BUILD_ENVIRONMENT=VS8
cl 2>&1 | find " 15." > NUL && set BUILD_ENVIRONMENT=VS9
cl 2>&1 | find " 16." > NUL && set BUILD_ENVIRONMENT=VS10
cl 2>&1 | find " 17." > NUL && set BUILD_ENVIRONMENT=VS11
if not defined BUILD_ENVIRONMENT (
echo Error: Visual Studio version too old or version detection failed.
exit /b