diff options
author | Ladislav Zezula <zezula@volny.cz> | 2022-10-03 20:06:22 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-03 20:06:22 +0200 |
commit | 3846f0b8e2c47320c6b499492496f3e3f2e76821 (patch) | |
tree | 59610e60d94b65d8439d979802a5852d9b48c745 /make-msvc.bat | |
parent | 88b18d4d097ef6cabb4f99f3a48db172064ea119 (diff) | |
parent | 305583053bf2796adf3162cf617020c250d7faf7 (diff) |
Merge pull request #265 from ladislav-zezula/LZ_LocaleAndPlatformv9.24
Locale&platform problems fixed
Diffstat (limited to 'make-msvc.bat')
-rw-r--r-- | make-msvc.bat | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/make-msvc.bat b/make-msvc.bat index 1a22835..80d99fe 100644 --- a/make-msvc.bat +++ b/make-msvc.bat @@ -21,10 +21,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 2019 -call :BuildLibs "%VCVARS_2008%" x86 %LIB_NAME%_vs08.sln \vs2008 -call :BuildLibs "%VCVARS_2008%" x64 %LIB_NAME%_vs08.sln \vs2008 -call :BuildLibs "%VCVARS_2019%" x86 %LIB_NAME%_vs19.sln -call :BuildLibs "%VCVARS_2019%" x64 %LIB_NAME%_vs19.sln +if not "x%VCVARS_2008%" == "x" call :BuildLibs "%VCVARS_2008%" x86 %LIB_NAME%_vs08.sln \vs2008 +if not "x%VCVARS_2008%" == "x" call :BuildLibs "%VCVARS_2008%" x64 %LIB_NAME%_vs08.sln \vs2008 +if not "x%VCVARS_2019%" == "x" call :BuildLibs "%VCVARS_2019%" x86 %LIB_NAME%_vs19.sln +if not "x%VCVARS_2019%" == "x" call :BuildLibs "%VCVARS_2019%" x64 %LIB_NAME%_vs19.sln goto:eof ::----------------------------------------------------------------------------- |