7 lines
236 B
Batchfile
7 lines
236 B
Batchfile
@echo off
|
|
if "%1"=="VS2010" goto VS2010
|
|
call %RS_TOOLSROOT%\script\coding\projbuild\rebuild_library.bat game1_lib
|
|
if "%1"=="VS2008" goto END
|
|
:VS2010
|
|
call %RS_TOOLSROOT%\script\util\projgen\rebuildGameLibrary.bat game1_lib.txt %2 %3
|
|
:END |