You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
726 B
Batchfile
27 lines
726 B
Batchfile
@echo off
|
|
|
|
@REM echo Running codegen...
|
|
|
|
if exist gen\ (
|
|
@REM echo "Codegen folder already exists, not deleting because that messes with vscode intellisense..."
|
|
) else (
|
|
mkdir gen
|
|
)
|
|
|
|
@REM shaders
|
|
thirdparty\sokol-shdc.exe --input threedee.glsl --output gen\threedee.glsl.h --slang glsl300es:hlsl5:glsl330 || goto :error
|
|
|
|
@REM metadesk codegen
|
|
cl /nologo /diagnostics:caret /Ithirdparty /FC /W3 /Zi /WX codegen.c || goto :error
|
|
@REM zig cc -Ithirdparty -gfull -gcodeview codegen.c -o codegen.exe || goto error
|
|
codegen || goto :error
|
|
|
|
@REM cl /nologo /diagnostics:caret /Ithirdparty /Igen /W3 /Zi /WX maketraining.c || goto :error
|
|
@REM maketraining || goto :error
|
|
|
|
goto :EOF
|
|
|
|
:error
|
|
echo Codegen failed
|
|
exit /B %ERRORLEVEL%
|