Update build options

This commit is contained in:
InvisibleUp 2023-09-23 15:11:49 -07:00
parent a99f8d9fbf
commit 67090cbbcd
1 changed files with 2 additions and 2 deletions

View File

@ -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'