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