refactor/Test/meson.build
Ed_ 581afa9154 First working prototype.
TODO: I need to cleanup memory.
2023-03-12 21:34:55 -04:00

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' )