Rename DEBUG to _DEBUG

This commit is contained in:
flysand7 2023-08-01 11:28:18 +11:00
parent 5a9bea11ad
commit fd8f580b63
1 changed files with 1 additions and 1 deletions

View File

@ -74,7 +74,7 @@ if args.mode == 'release':
else: # 'debug'
cc_flags.append('-g')
cc_flags.append('-O0')
cc_defines.append('DEBUG')
cc_defines.append('_DEBUG')
if target != 'windows':
cc_flags.append('-fpic')
cc_defines.append(f'_CIA_OS_{target.upper()}')