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