11 lines
305 B
Meson
11 lines
305 B
Meson
project('memoserv', 'cpp', default_options:['debug=true', 'cpp_std=c++17', 'b_ndebug=if-release'])
|
|
|
|
is_debug_build = 0
|
|
if get_option('buildtype').startswith('debug')
|
|
is_debug_build = 1
|
|
endif
|
|
|
|
memcard_proj = subproject('memcard')
|
|
memcard_dep = memcard_proj.get_variable('memcard_dep')
|
|
|
|
subdir('src/gui')
|