First commit

This commit is contained in:
2026-06-13 00:12:20 +03:00
commit 71707738e3
4 changed files with 114 additions and 0 deletions

19
meson.build Normal file
View 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
)