21 lines
258 B
Meson
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,
|
|
)
|