From 9ee14eb4452ea166f1b1c8517939388d413387e5 Mon Sep 17 00:00:00 2001 From: Mihai Fufezan Date: Sat, 2 Jul 2022 02:48:21 +0300 Subject: [PATCH] meson: build with -O3 (#291) --- meson.build | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 18a4c709..00628761 100644 --- a/meson.build +++ b/meson.build @@ -1,6 +1,15 @@ project('Hyprland', 'cpp', 'c', version : '0.6.2beta', - default_options : ['warning_level=3', 'cpp_std=c++20', 'default_library=static']) + default_options : ['warning_level=2', 'cpp_std=c++20', 'default_library=static', 'optimization=3']) + +add_project_arguments( + [ + '-Wno-unused-parameter', + '-Wno-unused-value', + '-Wno-missing-field-initializers', + '-Wno-narrowing', + ], + language: 'cpp') wlroots = subproject('wlroots', default_options: ['examples=false']) have_xwlr = wlroots.get_variable('features').get('xwayland')