From fc326115fa154bc19f3f10d7c2c4e57710ef1e0d Mon Sep 17 00:00:00 2001 From: spl3g Date: Sun, 9 Nov 2025 20:43:50 +0300 Subject: Move to sokol (broke the wave screen) --- nob.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'nob.c') diff --git a/nob.c b/nob.c index 8ab8e14..1449a80 100644 --- a/nob.c +++ b/nob.c @@ -9,7 +9,7 @@ #define nob_cc_include_path(cmd, path) cmd_append(cmd, temp_sprintf("-I%s", path)) #define nob_cc_no_link(cmd) cmd_append(cmd, "-c") -#define nob_cc_my_flags(cmd) cmd_append(cmd, "-Wall", "-Wextra", "-ggdb") +#define nob_cc_my_flags(cmd) cmd_append(cmd, "-Wall", "-Wextra", "-Wno-unused-function", "-ggdb") typedef struct { Nob_String_View *items; @@ -92,7 +92,7 @@ int main(int argc, char **argv) { nob_cmd_append(&cmd, input_sb.items); } - nob_cmd_append(&cmd, "-lm", "-lasound", "-lSDL3", "-lSDL3_ttf"); + nob_cmd_append(&cmd, "-lm", "-lasound", "-lGL", "-lX11", "-lXcursor", "-lXi"); nob_cc_output(&cmd, BUILD_FOLDER "crynth"); if (!nob_cmd_run(&cmd)) -- cgit v1.2.3