PROJECT: Fix "these files could not be found and will not be loaded" in batch script
This commit is contained in:
parent
b70abed3dd
commit
fd92753c88
|
@ -5,11 +5,11 @@ if "%OLDPATH%"=="" set OLDPATH=%PATH%
|
||||||
|
|
||||||
if "%1"=="x32" (
|
if "%1"=="x32" (
|
||||||
call setenv.bat x32
|
call setenv.bat x32
|
||||||
set type="Win32"
|
set type=Win32
|
||||||
goto build
|
goto build
|
||||||
) else if "%1"=="x64" (
|
) else if "%1"=="x64" (
|
||||||
call setenv.bat x64
|
call setenv.bat x64
|
||||||
set type="x64"
|
set type=x64
|
||||||
goto build
|
goto build
|
||||||
) else if "%1"=="coverity" (
|
) else if "%1"=="coverity" (
|
||||||
if "%2"=="" (
|
if "%2"=="" (
|
||||||
|
|
Loading…
Reference in New Issue