From 67090cbbcd138e9682fd95f11253857e92ffbbce Mon Sep 17 00:00:00 2001 From: InvisibleUp Date: Sat, 23 Sep 2023 15:11:49 -0700 Subject: [PATCH] Update build options --- meson.build | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/meson.build b/meson.build index ed72b62..b937366 100644 --- a/meson.build +++ b/meson.build @@ -1,5 +1,5 @@ # Project definition -project('microvmac', 'c') +project('microvmac', 'c', default_options: ['warning_level=everything', 'prefer_static=true', 'c_std=c17']) # Configuration data conf = configuration_data({ @@ -57,7 +57,7 @@ configure_file( ) # Dependencies -lSDL2 = dependency('SDL2', static: true) +lSDL2 = dependency('SDL2', static: true, default_options: ['test=false']) # Windows resources if target_machine.system() == 'windows'