mirror of
https://github.com/Ed94/refactor.git
synced 2024-11-10 04:14:53 -08:00
14 lines
280 B
Meson
14 lines
280 B
Meson
|
|
||
|
project( 'refactor', 'c', 'cpp', default_options : ['buildtype=debug'] )
|
||
|
|
||
|
# add_global_arguments('-E', language : 'cpp')
|
||
|
|
||
|
if get_option('buildtype').startswith('debug')
|
||
|
|
||
|
add_project_arguments('-DBuild_Debug', language : 'cpp')
|
||
|
|
||
|
endif
|
||
|
|
||
|
executable( 'refactor', 'refactor.cpp' )
|
||
|
|