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.
12 lines
261 B
Batchfile
12 lines
261 B
Batchfile
2 years ago
|
@echo off
|
||
|
|
||
|
@REM https://learn.microsoft.com/en-us/cpp/build/reference/compiler-options-listed-by-category?view=msvc-170
|
||
|
|
||
|
call shadergen.bat || goto :error
|
||
|
cl /Ithirdparty /W3 /WX main.c || goto :error
|
||
|
goto :EOF
|
||
|
|
||
|
:error
|
||
|
echo Failed to build
|
||
|
exit /B %ERRORLEVEL%
|