2023-04-01 19:21:46 -07:00
|
|
|
project( 'test', 'c', 'cpp', default_options : ['buildtype=debug'] )
|
|
|
|
|
|
|
|
# add_global_arguments('-E', language : 'cpp')
|
|
|
|
|
2023-04-09 11:51:37 -07:00
|
|
|
includes = include_directories(
|
|
|
|
[
|
2023-04-02 09:25:08 -07:00
|
|
|
'./gen',
|
|
|
|
'../project',
|
2023-07-12 12:59:47 -07:00
|
|
|
# '../thirdparty'
|
2023-04-01 19:21:46 -07:00
|
|
|
])
|
|
|
|
|
|
|
|
# get_sources = files('./get_sources.ps1')
|
|
|
|
# sources = files(run_command('powershell', get_sources, check: true).stdout().strip().split('\n'))
|
|
|
|
|
2023-04-02 09:25:08 -07:00
|
|
|
sources = [ 'test.cpp' ]
|
2023-04-01 19:21:46 -07:00
|
|
|
|
|
|
|
if get_option('buildtype').startswith('debug')
|
|
|
|
|
|
|
|
add_project_arguments('-DBuild_Debug', language : ['c', 'cpp'])
|
|
|
|
|
|
|
|
endif
|
|
|
|
|
2023-04-09 11:51:37 -07:00
|
|
|
add_project_arguments('-Druntime', language : ['c', 'cpp'])
|
|
|
|
|
2023-04-02 09:25:08 -07:00
|
|
|
executable( 'testcpp', sources, include_directories : includes )
|