mirror of
https://github.com/BlackMATov/enum.hpp.git
synced 2025-12-13 06:59:45 +07:00
13 lines
287 B
Batchfile
13 lines
287 B
Batchfile
@echo off
|
|
set BUILD_DIR=%~dp0%\..\build
|
|
mkdir %BUILD_DIR%\msvc2019 || goto :error
|
|
cd %BUILD_DIR%\msvc2019 || goto :error
|
|
cmake -G "Visual Studio 16 2019" ..\.. || goto :error
|
|
start enum.hpp.sln || goto :error
|
|
|
|
goto :EOF
|
|
|
|
:error
|
|
echo Failed with error #%errorlevel%.
|
|
exit /b %errorlevel%
|