15 lines
170 B
Batchfile
15 lines
170 B
Batchfile
@echo off
|
|
|
|
if "%~1"=="run" (
|
|
set buildcmd=run
|
|
) else (
|
|
set buildcmd=build
|
|
)
|
|
|
|
pushd build
|
|
del /F /Q *
|
|
odin %buildcmd% ../src/ -keep-executable -out:femodin.exe
|
|
|
|
popd
|
|
|