some cleanup of unused macros in test files, preparing bootstrap and single header code + scripts

This commit is contained in:
2023-07-24 18:51:49 -04:00
parent 49ef1a2e87
commit b5cad6e8a1
16 changed files with 136 additions and 8 deletions

View File

View File

@ -0,0 +1,18 @@
project( 'gen_singleheader', 'c', 'cpp', default_options : ['buildtype=debug'] )
includes = include_directories(
[
'../project',
])
sources = [ 'gen.singleheader.cpp' ]
if get_option('buildtype').sartswith('debug')
add_project_arguments('-DBuild_Debug', language : ['c', 'cpp'])
endif
add_project_arguments('-DGEN_TIME', language : ['c', 'cpp'])
executable( 'gen_singlehader', sources, include_directories : includes )