Files
SpacetimeDB/modules/module-test-cpp/compile.bat
2026-03-18 10:22:30 -07:00

11 lines
161 B
Batchfile

@echo off
setlocal
pushd "%~dp0"
call emcmake cmake -B build .
if errorlevel 1 goto :done
call cmake --build build
:done
set ERR=%errorlevel%
popd
exit /b %ERR%