mirror of
https://github.com/Ed94/refactor.git
synced 2024-11-10 04:14:53 -08:00
20 lines
531 B
Meson
20 lines
531 B
Meson
|
project( 'refactor', 'c', 'cpp', default_options : ['buildtype=debug'] )
|
||
|
|
||
|
# add_global_arguments('-E', language : 'cpp')
|
||
|
|
||
|
includes = include_directories(
|
||
|
[ '../project'
|
||
|
, '../thirdparty'
|
||
|
])
|
||
|
|
||
|
get_sources = files('./get_sources.ps1')
|
||
|
sources = files(run_command('powershell', get_sources, check: true).stdout().strip().split('\n'))
|
||
|
|
||
|
if get_option('buildtype').startswith('debug')
|
||
|
|
||
|
add_project_arguments('-DBuild_Debug', language : ['c', 'cpp'])
|
||
|
|
||
|
endif
|
||
|
|
||
|
executable( 'refactor', sources, include_directories : includes )
|