Skip to content

Commit

Permalink
reduce warning level
Browse files Browse the repository at this point in the history
  • Loading branch information
peter-urban committed Jul 5, 2024
1 parent af5d9ad commit 2a21b95
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ project(
license: 'MPL-2.0',

version: '0.8.0',
default_options: ['warning_level=2', 'buildtype=release', 'cpp_std=c++20'],
default_options: ['warning_level=1', 'buildtype=release', 'cpp_std=c++20'],
meson_version: '>=1.3.2' #first version with clang-cl openmp support
)

Expand Down
2 changes: 1 addition & 1 deletion src/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ subdir('themachinethatgoesping')
# -- catch2 tests --
if get_option('build_tests').enabled()
catch2 = subproject('catch2', default_options: ['tests=false'])
catch2 = catch2.get_variable('catch2_with_main_dep')
catch2 = catch2.get_variable('catch2_with_main_dep').as_system('system')

subdir('tests')
endif
Expand Down

0 comments on commit 2a21b95

Please sign in to comment.