mirror of
https://github.com/Ed94/refactor.git
synced 2024-11-10 04:14:53 -08:00
12 lines
296 B
Meson
12 lines
296 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 : ['c', 'cpp'])
|
|
|
|
endif
|
|
|
|
executable( 'refactor', 'refactor.refactored.cpp' )
|