diff options
author | vaxerski <[email protected]> | 2022-07-06 17:02:12 +0200 |
---|---|---|
committer | vaxerski <[email protected]> | 2022-07-06 17:02:12 +0200 |
commit | 141f9810bbfc8473a19a6985b095cedb973b01dc (patch) | |
tree | 4aa799ce8634dc9ab82fffabbb8cb0175101eb2a /meson.build | |
parent | 1599dc47d1d6ba380f524a2937ba84f3fc95f1d6 (diff) | |
download | Hyprland-141f9810bbfc8473a19a6985b095cedb973b01dc.tar.gz Hyprland-141f9810bbfc8473a19a6985b095cedb973b01dc.zip |
fix meson C++23
Diffstat (limited to 'meson.build')
-rw-r--r-- | meson.build | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/meson.build b/meson.build index 3f8c68e4..498a6274 100644 --- a/meson.build +++ b/meson.build @@ -1,6 +1,8 @@ project('Hyprland', 'cpp', 'c', version : '0.6.2beta', - default_options : ['warning_level=2', 'cpp_std=c++23', 'default_library=static', 'optimization=3']) + default_options : ['warning_level=2', 'default_library=static', 'optimization=3']) + +add_global_arguments('-std=c++23', language: 'cpp') add_project_arguments( [ |