REM %2 = <installPrefix>
REM %3 = <creatoolsGeneration>
+if %PROCESSOR_ARCHITECTURE%==x86 (
+ set ProgramFilesPath_x86=%ProgramFiles%
+ echo "Architecture found = x86"
+) else (
+ set "ProgramFilesPath_x86=%ProgramFiles(x86)%"
+ echo "Architecture found = x64"
+)
+
+set compilerVersion="Visual Studio 10"
+set vcvarsall="%ProgramFilesPath_x86%\Microsoft Visual Studio 10.0\VC\vcvarsall.bat"
+if not exist %vcvarsall% set vcvarsall="%ProgramFilesPath_x64%\Microsoft Visual Studio 10.0\VC\vcvarsall.bat"
+if not exist %vcvarsall% (
+ set compilerVersion="Visual Studio 9 2008"
+ set vcvarsall="%ProgramFilesPath_x86%\Microsoft Visual Studio 9.0\VC\vcvarsall.bat"
+ if not exist %vcvarsall% set vcvarsall="%ProgramFilesPath_x64%\Microsoft Visual Studio 9.0\VC\vcvarsall.bat"
+ if not exist %vcvarsall% (
+ echo ERROR!!! Visual Studio has not been found in the system
+ exit
+ )
+)
+
set binfolder=%3\creatools_bin\%1Bin
cd %binfolder%
-cmake -G"Visual Studio 9 2008" -H%3\creatools_sources\%1 -B%3\creatools_bin\%1Bin
+cmake -G%compilerVersion% -H%3\creatools_sources\%1 -B%3\creatools_bin\%1Bin
cmake -D INCLUDE_CTEST:BOOL=ON -D CMAKE_INSTALL_PREFIX:PATH=%2\%1 CMakeCache.txt
REM %2 = <Module Sources Ex crea bbtk creaMaracasVisu ...>
REM %3 = <creatoolsGeneration>
+if %PROCESSOR_ARCHITECTURE%==x86 (
+ set ProgramFilesPath_x86=%ProgramFiles%
+ echo "Architecture found = x86"
+) else
+(
+ set "ProgramFilesPath_x86=%ProgramFiles(x86)%"
+ echo "Architecture found = x64"
+)
+set compilerVersion="Visual Studio 10"
+set vcvarsall="%ProgramFilesPath_x86%\Microsoft Visual Studio 10.0\VC\vcvarsall.bat"
+if not exist %vcvarsall% set vcvarsall="%ProgramFilesPath_x64%\Microsoft Visual Studio 10.0\VC\vcvarsall.bat"
+if not exist %vcvarsall% (
+ set compilerVersion="Visual Studio 9 2008"
+ set vcvarsall="%ProgramFilesPath_x86%\Microsoft Visual Studio 9.0\VC\vcvarsall.bat"
+ if not exist %vcvarsall% set vcvarsall="%ProgramFilesPath_x64%\Microsoft Visual Studio 9.0\VC\vcvarsall.bat"
+ if not exist %vcvarsall% (
+ echo ERROR!!! Visual Studio has not been found in the system
+ exit
+ )
+)
+
+call %vcvarsall%
+
set binfolder=%3\creatools_bin\%2Bin
cd %binfolder%
-call "C:\Program Files\Microsoft Visual Studio 9.0\VC\vcvarsall.bat"
-FOR /R %%a IN (*.sln) DO msbuild %%a /p:Configuration=%1
-msbuild /p:Configuration=%1 INSTALL.vcproj
-msbuild /p:Configuration=%1 PACKAGE.vcproj
-copy %2*.exe %3\Result_Installers\
+if %compilerVersion%=="Visual Studio 10"
+(
+ FOR /R %%a IN (*.sln) DO msbuild %%a /p:Configuration=%1
+ msbuild /p:Configuration=%1 ALL_BUILD.vcxproj
+ msbuild /p:Configuration=%1 INSTALL.vcxproj
+ msbuild /p:Configuration=%1 PACKAGE.vcxproj
+ copy %2*.exe %3\Result_Installers\
+)
+else
+(
+ FOR /R %%a IN (*.sln) DO msbuild %%a /p:Configuration=%1
+ msbuild /p:Configuration=%1 INSTALL.vcproj
+ msbuild /p:Configuration=%1 PACKAGE.vcproj
+ copy %2*.exe %3\Result_Installers\
+)
REM %2 = <Module Sources Ex crea bbtk creaMaracasVisu ...>
REM %3 = <creatoolsGeneration>
+if %PROCESSOR_ARCHITECTURE%==x86 (
+ set ProgramFilesPath_x86=%ProgramFiles%
+ echo "Architecture found = x86"
+) else
+(
+ set "ProgramFilesPath_x86=%ProgramFiles(x86)%"
+ echo "Architecture found = x64"
+)
+set compilerVersion="Visual Studio 10"
+set vcvarsall="%ProgramFilesPath_x86%\Microsoft Visual Studio 10.0\VC\vcvarsall.bat"
+if not exist %vcvarsall% set vcvarsall="%ProgramFilesPath_x64%\Microsoft Visual Studio 10.0\VC\vcvarsall.bat"
+if not exist %vcvarsall% (
+ set compilerVersion="Visual Studio 9 2008"
+ set vcvarsall="%ProgramFilesPath_x86%\Microsoft Visual Studio 9.0\VC\vcvarsall.bat"
+ if not exist %vcvarsall% set vcvarsall="%ProgramFilesPath_x64%\Microsoft Visual Studio 9.0\VC\vcvarsall.bat"
+ if not exist %vcvarsall% (
+ echo ERROR!!! Visual Studio has not been found in the system
+ exit
+ )
+)
+
+call %vcvarsall%
+
set binfolder=%3\creatools_bin\%1Bin
cd %binfolder%
-call "C:\Program Files\Microsoft Visual Studio 9.0\VC\vcvarsall.bat"
-FOR /R %%a IN (*.sln) DO msbuild /p:Configuration=%1 PACKAGE.vcproj
-copy %2*.exe %3\Result_Installers\
+
+if %compilerVersion%=="Visual Studio 10"
+(
+ FOR /R %%a IN (*.sln) DO msbuild /p:Configuration=%1 PACKAGE.vcxproj
+ copy %2*.exe %3\Result_Installers\
+)
+else
+(
+ FOR /R %%a IN (*.sln) DO msbuild /p:Configuration=%1 PACKAGE.vcproj
+ copy %2*.exe %3\Result_Installers\
+)