39 lines
812 B
Meson
Executable File
39 lines
812 B
Meson
Executable File
project(
|
|
meson.current_source_dir().split('/').get(-1),
|
|
'cpp',
|
|
version : run_command('git', 'rev-parse', '--short', 'HEAD').stdout().strip(),
|
|
default_options : [
|
|
'warning_level=1',
|
|
'optimization=3',
|
|
'cpp_std=c++20',
|
|
])
|
|
|
|
add_project_arguments (
|
|
'-Wpedantic',
|
|
'-Wno-shadow',
|
|
'-Wno-unused-but-set-variable',
|
|
'-Wno-comment',
|
|
'-Wno-unused-parameter',
|
|
'-Wno-unused-value',
|
|
'-Wno-unused-header',
|
|
'-Wno-missing-field-initializers',
|
|
'-Wno-narrowing',
|
|
'-Wno-deprecated-enum-enum-conversion',
|
|
'-Wno-volatile',
|
|
'-Wno-format-security',
|
|
'-Wno-switch',
|
|
'-Wno-ignored-attributes',
|
|
'-Wno-unused-variable',
|
|
language: 'cpp'
|
|
)
|
|
|
|
args = []
|
|
inc = []
|
|
deps = [
|
|
dependency('uuid'),
|
|
subproject('nlohmann_json').get_variable('nlohmann_json_dep'),
|
|
]
|
|
|
|
subdir('src')
|
|
subdir('tests')
|