We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9564c91 commit 0625a11Copy full SHA for 0625a11
meson.build
@@ -3,6 +3,7 @@
3
#
4
project('dubna', 'cpp',
5
version: '0.1',
6
+ meson_version: '>=1.1',
7
default_options: [
8
'buildtype=debugoptimized',
9
'cpp_std=c++17',
@@ -84,7 +85,7 @@ run_target('cppcheck', command: [
84
85
'--quiet', # No progress report messages
86
'--suppress=badBitmaskCheck', # Allow redundant zero operands
87
'--suppress=*:*/gtest/*', # Ignore issues in Googletest
- '--library=' + join_paths(meson.source_root(), 'tests/googletest.xml'), # Parse TEST() macro properly
88
+ '--library=' + join_paths(meson.project_source_root(), 'tests/googletest.xml'), # Parse TEST() macro properly
89
]
90
)
91
0 commit comments