mirror of
https://github.com/reactos/reactos.git
synced 2025-04-06 05:34:22 +00:00
[CMAKE]
- 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:
parent
971e49a62d
commit
94167fa6cb
1 changed files with 4 additions and 4 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue