diff options
| author | Joel Klinghed <the_jk@spawned.biz> | 2025-09-08 23:10:04 +0200 |
|---|---|---|
| committer | Joel Klinghed <the_jk@spawned.biz> | 2025-09-08 23:10:04 +0200 |
| commit | f0ba930314e05c8d949ce92ffbda41fdb133198a (patch) | |
| tree | 20f0f6984e91aa7da781d2d5b34ba35a4eecf8fd /meson.build | |
| parent | 677265461b3c596ab2a88858e74b0970196198fe (diff) | |
Disable RTTI and exceptions
Are not going to use them
Diffstat (limited to 'meson.build')
| -rw-r--r-- | meson.build | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/meson.build b/meson.build index 5d39c12..ff6a6fc 100644 --- a/meson.build +++ b/meson.build @@ -3,7 +3,12 @@ project( 'cpp', version : '0.1', meson_version : '>= 1.3.0', - default_options : ['warning_level=3', 'cpp_std=c++23'], + default_options : [ + 'warning_level=3', + 'cpp_std=c++23', + 'cpp_eh=none', + 'cpp_rtti=false', + ], ) conf_data = configuration_data() |
