7 lines
129 B
Batchfile
7 lines
129 B
Batchfile
@echo off
|
|
cd /d "%~dp0"
|
|
cmake --preset Clang
|
|
if errorlevel 1 exit /b 1
|
|
cmake --build --preset Clang -j
|
|
if errorlevel 1 exit /b 1
|