blob: 7efc4cad2741a15c25633703b25348870ac24154 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
@ECHO OFF
PUSHD %~dp0\..
CALL vswhere.bat x86
IF ERRORLEVEL 1 (
ECHO ERROR! make-addons.bat: Something went wrong when calling vswhere.bat
POPD
EXIT /B 1
)
CALL make-addons.bat %*
POPD
|