mirror of
https://github.com/enduro2d/enduro2d-bootstrap.git
synced 2025-12-12 19:18:32 +07:00
13 lines
297 B
Batchfile
13 lines
297 B
Batchfile
@echo off
|
|
set BUILD_DIR=%~dp0%\..\build
|
|
mkdir %BUILD_DIR%\msvc2017 || goto :error
|
|
cd %BUILD_DIR%\msvc2017 || goto :error
|
|
cmake -G "Visual Studio 15 2017" ..\.. || goto :error
|
|
start enduro2d-bootstrap.sln || goto :error
|
|
|
|
goto :EOF
|
|
|
|
:error
|
|
echo Failed with error #%errorlevel%.
|
|
exit /b %errorlevel%
|