First commit
This commit is contained in:
19
meson.build
Normal file
19
meson.build
Normal file
@@ -0,0 +1,19 @@
|
||||
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
|
||||
)
|
||||
Reference in New Issue
Block a user