Batch file tweaks, fix printing of the used generator

This commit is contained in:
Stinkfist0
2015-11-20 11:44:17 +02:00
parent 90946e0877
commit bb3dc351b8
2 changed files with 24 additions and 27 deletions
+6 -8
View File
@@ -26,6 +26,10 @@ echo.
set THISDIR=%CD% set THISDIR=%CD%
set PROJECT_NAME=IfcOpenShell
call utils\cecho.cmd 15 0 "This script fetches and builds all %PROJECT_NAME% dependencies"
echo.
:: Enable the delayed environment variable expansion needed in vs-cfg.cmd. :: Enable the delayed environment variable expansion needed in vs-cfg.cmd.
setlocal EnableDelayedExpansion setlocal EnableDelayedExpansion
@@ -35,11 +39,6 @@ IF "%VSINSTALLDIR%"=="" (
GOTO :ErrorAndPrintUsage GOTO :ErrorAndPrintUsage
) )
set PROJECT_NAME=IfcOpenShell
call utils\cecho.cmd 15 0 "This script fetches and builds all %PROJECT_NAME% dependencies"
echo.
:: Set up variables depending on the used Visual Studio version :: Set up variables depending on the used Visual Studio version
call vs-cfg.cmd %1 %2 call vs-cfg.cmd %1 %2
IF NOT %ERRORLEVEL%==0 GOTO :Error IF NOT %ERRORLEVEL%==0 GOTO :Error
@@ -87,7 +86,7 @@ FOR %%i IN (powershell git cmake) DO (
:: Print build configuration information :: Print build configuration information
call cecho.cmd 0 10 "Script configuration:" call cecho.cmd 0 10 "Script configuration:"
call cecho.cmd 0 13 "* CMake Generator`t= '`"%GENERATOR_DEFAULT%`'`t call cecho.cmd 0 13 "* CMake Generator`t= '`"%GENERATOR%`'`t
echo - Passed to CMake -G option. echo - Passed to CMake -G option.
call cecho.cmd 0 13 "* Target Architecture`t= %TARGET_ARCH%" call cecho.cmd 0 13 "* Target Architecture`t= %TARGET_ARCH%"
echo - Whether were doing 32-bit (x86) or 64-bit (x64) build. echo - Whether were doing 32-bit (x86) or 64-bit (x64) build.
@@ -113,13 +112,12 @@ echo - How many MSBuild.exe processes may be run in parallel.
echo Defaults to NUMBER_OF_PROCESSORS. echo Defaults to NUMBER_OF_PROCESSORS.
echo. echo.
:: Print script's usage information
call :PrintUsage call :PrintUsage
call cecho.cmd 0 14 "Warning: You will need roughly 8 GB of disk space to proceed `(VS 2015 x64 RelWithDebInfo`)." call cecho.cmd 0 14 "Warning: You will need roughly 8 GB of disk space to proceed `(VS 2015 x64 RelWithDebInfo`)."
echo. echo.
echo If you are not ready with the above, press Ctrl-C to abort! call cecho.cmd black cyan "If you are not ready with the above, press Ctrl-C to abort!"
pause pause
echo. echo.
+18 -19
View File
@@ -34,35 +34,33 @@ set GENERATOR=%1
:: TODO Print CMake and VS versions. Maybe in build-deps.cmd would be better than here. :: TODO Print CMake and VS versions. Maybe in build-deps.cmd would be better than here.
:: Supported Visual Studio versions: :: Supported Visual Studio versions:
set GENERATOR_VS2015_32="Visual Studio 14 2015" set GENERATORS[0]="Visual Studio 14 2015"
set GENERATOR_VS2015_64="Visual Studio 14 2015 Win64" set GENERATORS[1]="Visual Studio 14 2015 Win64"
:: TODO Check CMake version and convert possible new format (>= 3.0) generator names :: TODO Check CMake version and convert possible new format (>= 3.0) generator names
:: to the old versions if using older CMake for VS <= 2013, :: to the old versions if using older CMake for VS <= 2013,
:: see http://www.cmake.org/cmake/help/v3.0/release/3.0.0.html#other-changes :: see http://www.cmake.org/cmake/help/v3.0/release/3.0.0.html#other-changes
set GENERATOR_VS2013_32="Visual Studio 12" set GENERATORS[2]="Visual Studio 12"
set GENERATOR_VS2013_64="Visual Studio 12 Win64" set GENERATORS[3]="Visual Studio 12 Win64"
set GENERATOR_VS2012_32="Visual Studio 11" set GENERATORS[4]="Visual Studio 11"
set GENERATOR_VS2012_64="Visual Studio 11 Win64" set GENERATORS[5]="Visual Studio 11 Win64"
set GENERATOR_VS2010_32="Visual Studio 10" set GENERATORS[6]="Visual Studio 10"
set GENERATOR_VS2010_64="Visual Studio 10 Win64" set GENERATORS[7]="Visual Studio 10 Win64"
set GENERATOR_VS2008_32="Visual Studio 9 2008" set GENERATORS[8]="Visual Studio 9 2008"
set GENERATOR_VS2008_64="Visual Studio 9 2008 Win64" set GENERATORS[9]="Visual Studio 9 2008 Win64"
set GENERATOR_DEFAULT=%GENERATOR_VS2015_64% set GENERATOR_DEFAULT=%GENERATORS[1]%
IF "!GENERATOR!"=="" ( IF "!GENERATOR!"=="" (
set GENERATOR=%GENERATOR_DEFAULT% set GENERATOR=%GENERATOR_DEFAULT%
call utils\cecho.cmd 0 14 "vs-cfg.cmd: Warning: Generator not passed - using the default '`"%GENERATOR_DEFAULT%`'`t call utils\cecho.cmd 0 14 "vs-cfg.cmd: Warning: Generator not passed - using the default '`"%GENERATOR_DEFAULT%`'`t
) )
IF NOT !GENERATOR!==%GENERATOR_VS2008_32% IF NOT !GENERATOR!==%GENERATOR_VS2008_64% ( FOR /l %%i in (0,1,9) DO (
IF NOT !GENERATOR!==%GENERATOR_VS2010_32% IF NOT !GENERATOR!==%GENERATOR_VS2010_64% ( IF !GENERATOR!==!GENERATORS[%%i]! GOTO :GeneratorValid
IF NOT !GENERATOR!==%GENERATOR_VS2012_32% IF NOT !GENERATOR!==%GENERATOR_VS2012_64% ( )
IF NOT !GENERATOR!==%GENERATOR_VS2013_32% IF NOT !GENERATOR!==%GENERATOR_VS2013_64% ( call utils\cecho.cmd 0 12 "vs-cfg.cmd: Invalid or unsupported CMake generator string passed: '`"!GENERATOR!`'". Cannot proceed, aborting!"
IF NOT !GENERATOR!==%GENERATOR_VS2015_32% IF NOT !GENERATOR!==%GENERATOR_VS2015_64% ( exit /b 1
call utils\cecho.cmd 0 12 "vs-cfg.cmd: Invalid or unsupported CMake generator string passed: '`"!GENERATOR!`'". Cannot proceed, aborting!"
exit /b 1
)))))
:GeneratorValid
:: Figure out the build configuration from the CMake generator string. :: Figure out the build configuration from the CMake generator string.
:: Are we building 32-bit or 64-bit version. :: Are we building 32-bit or 64-bit version.
set ARCH_BITS=32 set ARCH_BITS=32
@@ -71,6 +69,7 @@ set TARGET_ARCH=x86
set VS_PLATFORM=Win32 set VS_PLATFORM=Win32
:: Split the string for closer inspection. :: Split the string for closer inspection.
:: TODO A bit clumsy and not dynamic when new VS is released, clean this up.
:: VS_VER and VC_VER are convenience variables used f.ex. for filenames. :: VS_VER and VC_VER are convenience variables used f.ex. for filenames.
set GENERATOR_NO_DOUBLEQUOTES=%GENERATOR:"=% set GENERATOR_NO_DOUBLEQUOTES=%GENERATOR:"=%
set GENERATOR_SPLIT=%GENERATOR_NO_DOUBLEQUOTES: =,% set GENERATOR_SPLIT=%GENERATOR_NO_DOUBLEQUOTES: =,%