summaryrefslogtreecommitdiff
path: root/meson.build
diff options
context:
space:
mode:
authorJoel Klinghed <the_jk@spawned.biz>2025-09-08 23:10:04 +0200
committerJoel Klinghed <the_jk@spawned.biz>2025-09-08 23:10:04 +0200
commitf0ba930314e05c8d949ce92ffbda41fdb133198a (patch)
tree20f0f6984e91aa7da781d2d5b34ba35a4eecf8fd /meson.build
parent677265461b3c596ab2a88858e74b0970196198fe (diff)
Disable RTTI and exceptions
Are not going to use them
Diffstat (limited to 'meson.build')
-rw-r--r--meson.build7
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()