This commit is contained in:
2026-06-22 09:49:35 +03:00
parent d98af991c7
commit ef978f60f6
2 changed files with 20 additions and 47 deletions

View File

@@ -2,7 +2,8 @@ project('scuffedcraft', 'c')
cargs = [
'-std=c99',
'-Og'
'-Og',
'-g',
]
if host_machine.system() == 'windows'
cargs += [
@@ -15,5 +16,5 @@ endif
executable(
'scuffedcraft',
'./src/main.c',
c_args: cargs
c_args: cargs,
)