mirror of
https://github.com/Ed94/gencpp.git
synced 2024-11-10 02:54:53 -08:00
19 lines
429 B
Meson
19 lines
429 B
Meson
project( 'gen_singleheader', 'c', 'cpp', default_options : ['buildtype=debug'] )
|
|
|
|
includes = include_directories(
|
|
[
|
|
'../project',
|
|
])
|
|
|
|
sources = [ 'gen.singleheader.cpp' ]
|
|
|
|
if get_option('buildtype').startswith('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 )
|