mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-10 08:16:15 +02:00
14 lines
348 B
Meson
14 lines
348 B
Meson
|
add_project_arguments(
|
||
|
'-Wno-deprecated-declarations',
|
||
|
'-Wimplicit-fallthrough',
|
||
|
'-Werror=switch',
|
||
|
'-Werror=switch-enum',
|
||
|
'-Werror=unused-result',
|
||
|
'-Wdeprecated-copy',
|
||
|
'-Wignored-qualifiers',
|
||
|
# Enable assertions in libstdc++ by default. Harmless on libc++. Benchmarked
|
||
|
# at ~1% overhead in `nix search`.
|
||
|
#
|
||
|
language : 'cpp',
|
||
|
)
|