Files
scuffedcraft/meson.build
2026-06-22 09:49:35 +03:00

21 lines
258 B
Meson

project('scuffedcraft', 'c')
cargs = [
'-std=c99',
'-Og',
'-g',
]
if host_machine.system() == 'windows'
cargs += [
'-DUNICODE',
'-D__UNICODE',
'-municode'
]
endif
executable(
'scuffedcraft',
'./src/main.c',
c_args: cargs,
)