15 lines
475 B
Batchfile
15 lines
475 B
Batchfile
4 years ago
|
if not exist .\tools_x64\CMakeCache.txt goto :no_build
|
||
|
call ..\path_config.bat
|
||
|
C:
|
||
|
call "C:\Program Files (x86)\Microsoft Visual Studio\2019\Professional\VC\Auxiliary\Build\vcvars64.bat"
|
||
|
cd /d %RC_ROOT%\build
|
||
|
call patch_version.bat
|
||
|
if %errorlevel% neq 0 pause
|
||
|
cd tools_x64
|
||
|
cmake -DNL_VERSION_PATCH=%CLIENT_PATCH_VERSION% .
|
||
|
if %errorlevel% neq 0 pause
|
||
|
msbuild RyzomCore.sln /m:2 /p:Configuration=Release %MSBUILDEXTRA%
|
||
|
if %errorlevel% neq 0 pause
|
||
|
cd ..
|
||
|
:no_build
|