skunkworks-c/build.bat

11 lines
449 B
Batchfile
Raw Normal View History

2022-12-19 21:59:02 +01:00
@ECHO OFF
2022-12-21 12:38:50 +01:00
REM cd build && cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_EXPORT_COMPILE_COMMANDS=1 -GNinja .. && ninja && copy compile_commands.json .. && skunkworks.exe
2023-02-25 00:14:05 +01:00
REM cd build && meson compile && copy compile_commands.json .. && cd .. && build\gsa.exe
2023-02-26 23:29:44 +01:00
clang build.c src/str.c -Iinclude -Wno-everything -obuild.exe && build.exe && del build.exe && build\gsa_simple.exe
2023-02-25 00:14:05 +01:00
EXIT /B %ERRORLEVEL%
REM build\skip.exe c src && exit /b 1
REM build\gsa.exe
2022-12-21 12:38:50 +01:00