Enable -Wold-style-cast warning

master
Sébastien Villemot 2023-09-22 14:29:33 +02:00
parent 3804222667
commit fe73d74f8a
No known key found for this signature in database
GPG Key ID: 2CECE9350ECEBE4A
1 changed files with 4 additions and 0 deletions

View File

@ -8,6 +8,10 @@ project('dynare-preprocessor', 'cpp',
add_global_arguments('-DPACKAGE_VERSION="' + meson.project_version() + '"', language : 'cpp')
if get_option('warning_level').to_int() >= 2
add_global_arguments('-Wold-style-cast', language : 'cpp')
endif
cpp_compiler = meson.get_compiler('cpp')
subdir('src')