aboutsummaryrefslogtreecommitdiff
path: root/make-msvc.bat
diff options
context:
space:
mode:
authorLadislav Zezula <zezula@volny.cz>2020-11-02 12:09:59 +0100
committerLadislav Zezula <zezula@volny.cz>2020-11-02 12:09:59 +0100
commitfe0e63449bced71eb829653f3c10ba01d15bfa22 (patch)
tree411dbcc6deea8bd460f4f569f4948f4ec9a11b9a /make-msvc.bat
parent080158ee13f1f526f6d9c7181be0286200d6ce91 (diff)
Added missing files
Diffstat (limited to 'make-msvc.bat')
-rw-r--r--make-msvc.bat12
1 files changed, 6 insertions, 6 deletions
diff --git a/make-msvc.bat b/make-msvc.bat
index 3dc3ba4..1f97655 100644
--- a/make-msvc.bat
+++ b/make-msvc.bat
@@ -19,10 +19,10 @@ if exist "%PROGRAM_FILES_DIR%\Microsoft Visual Studio\2019\Professional\VC\Auxil
if exist "%PROGRAM_FILES_DIR%\Microsoft Visual Studio\2019\Enterprise\VC\Auxiliary\Build\vcvarsall.bat" set VCVARS_2019=%PROGRAM_FILES_DIR%\Microsoft Visual Studio\2019\Enterprise\VC\Auxiliary\Build\vcvarsall.bat
::Build all libraries using Visual Studio 2008 and 2017
-call :BuildStormLib "%VCVARS_2008%" x86 StormLib_vs08.sln
-call :BuildStormLib "%VCVARS_2008%" x64 StormLib_vs08.sln
-call :BuildStormLib "%VCVARS_2019%" x86 StormLib_vs19.sln
-call :BuildStormLib "%VCVARS_2019%" x64 StormLib_vs19.sln
+call :BuildLibs "%VCVARS_2008%" x86 %LIB_NAME%_vs08.sln
+call :BuildLibs "%VCVARS_2008%" x64 %LIB_NAME%_vs08.sln
+call :BuildLibs "%VCVARS_2019%" x86 %LIB_NAME%_vs19.sln
+call :BuildLibs "%VCVARS_2019%" x64 %LIB_NAME%_vs19.sln
goto:eof
::-----------------------------------------------------------------------------
@@ -32,10 +32,10 @@ goto:eof
::
:: %1 Full path to the VCVARS.BAT file
:: %2 Target build platform (x86 or x64)
-:: %3 Plain name of the solution file (for example "StormLib_vs19.sln")
+:: %3 Plain name of the /sln solution file
::
-:BuildStormLib
+:BuildLibs
::set VSCMD_DEBUG=1
call %1 %2
if "%2" == "x86" set SLN_TRG=Win32