20 lines
288 B
Batchfile
20 lines
288 B
Batchfile
@echo off
|
|
REM Switch directory of this batch file
|
|
cd %~dp0
|
|
|
|
if not exist build_win mkdir build_win
|
|
|
|
cd build_win
|
|
cmake .. -DHWY_WARNINGS_ARE_ERRORS:BOOL=ON -G Ninja || goto error
|
|
ninja || goto error
|
|
ctest -j || goto error
|
|
|
|
cd ..
|
|
echo Success
|
|
goto end
|
|
|
|
:error
|
|
echo Failure
|
|
exit /b 1
|
|
|
|
:end
|