Author: hbelusca
Date: Mon Mar 31 20:59:32 2014
New Revision: 62595
URL:
http://svn.reactos.org/svn/reactos?rev=62595&view=rev
Log:
Resurrect MSVC 2008 builds.
ACHTUNG! ACHTUNG! Even if you can build ROS with MSVC 2008, you cannot boot it (see the
below-mentioned JIRA report) ACHTUNG! ACHTUNG!
CORE-8023 #comment MSVC 2008 build resurrected in revision 62595.
Modified:
trunk/reactos/configure.cmd
Modified: trunk/reactos/configure.cmd
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/configure.cmd?rev=62595&am…
==============================================================================
--- trunk/reactos/configure.cmd [iso-8859-1] (original)
+++ trunk/reactos/configure.cmd [iso-8859-1] Mon Mar 31 20:59:32 2014
@@ -49,6 +49,7 @@
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 "15.00." > NUL && set
BUILD_ENVIRONMENT=VS9
cl 2>&1 | find "16.00." > NUL && set
BUILD_ENVIRONMENT=VS10
cl 2>&1 | find "17.00." > NUL && set
BUILD_ENVIRONMENT=VS11
cl 2>&1 | find "18.00." > NUL && set
BUILD_ENVIRONMENT=VS12
@@ -59,7 +60,13 @@
echo Detected Visual Studio Environment !BUILD_ENVIRONMENT!-!ARCH!
if /I "%1" == "VSSolution" (
- if "!BUILD_ENVIRONMENT!" == "VS10" (
+ if "!BUILD_ENVIRONMENT!" == "VS9" (
+ if "!ARCH!" == "amd64" (
+ set CMAKE_GENERATOR="Visual Studio 9 2008 Win64"
+ ) else (
+ set CMAKE_GENERATOR="Visual Studio 9 2008"
+ )
+ ) else if "!BUILD_ENVIRONMENT!" == "VS10" (
if "!ARCH!" == "amd64" (
set CMAKE_GENERATOR="Visual Studio 10 Win64"
) else (