blob: cc21a4fbde46a75e1bd3b0d29b5d0bd6d00ae259 (
plain)
1
2
3
4
5
6
7
|
@echo off
cd /D "%~dp0\.."
call scripts\build-win32-release.bat
if %errorlevel% neq 0 exit /b %errorlevel%
cpack -G NSIS --config build\win32\CPackConfig.cmake
if %errorlevel% neq 0 exit /b %errorlevel%
if /I %0 EQU "%~dpnx0" pause
|