mirror of
https://github.com/clockworklabs/SpacetimeDB.git
synced 2026-05-07 16:19:38 -04:00
11 lines
161 B
Batchfile
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%
|