17 lines
417 B
Meson
17 lines
417 B
Meson
project('memoserv', 'cpp',
|
|
version: '0.1.0',
|
|
meson_version: '>=0.49.2',
|
|
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
|
|
|
|
cxxopts_incl = include_directories('subprojects/cxxopts/include')
|
|
|
|
memcard_proj = subproject('memcard')
|
|
memcard_dep = memcard_proj.get_variable('memcard_dep')
|
|
|
|
subdir('src')
|