mirror of
https://github.com/BlackMATov/flat.hpp.git
synced 2025-12-13 09:45:38 +07:00
15 lines
321 B
Batchfile
15 lines
321 B
Batchfile
@echo off
|
|
set BUILD_DIR=%~dp0%\..\build
|
|
mkdir %BUILD_DIR%\debug || goto :error
|
|
cd %BUILD_DIR%\debug || goto :error
|
|
cmake ../.. || goto :error
|
|
cmake --build . --config Debug || goto :error
|
|
ctest --verbose || goto :error
|
|
cd ..\.. || goto :error
|
|
|
|
goto :EOF
|
|
|
|
:error
|
|
echo Failed with error #%errorlevel%.
|
|
exit /b %errorlevel%
|