mirror of
https://github.com/enduro2d/enduro2d-bootstrap.git
synced 2025-12-13 03:31:18 +07:00
14 lines
313 B
Batchfile
14 lines
313 B
Batchfile
@echo off
|
|
set BUILD_DIR=%~dp0%\..\build
|
|
mkdir %BUILD_DIR%\Release\x64 || goto :error
|
|
pushd %BUILD_DIR%\Release\x64 || goto :error
|
|
cmake ..\..\.. -A x64 || goto :error
|
|
cmake --build . --config Release || goto :error
|
|
popd || goto :error
|
|
|
|
goto :EOF
|
|
|
|
:error
|
|
echo Failed with error #%errorlevel%.
|
|
exit /b %errorlevel%
|