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