From bd2245d642f700ac736cd8349352917ef5340dbc Mon Sep 17 00:00:00 2001 From: Mihai Fufezan Date: Sat, 4 Feb 2023 01:13:15 +0200 Subject: [PATCH] meson: build in release by default --- meson.build | 2 ++ 1 file changed, 2 insertions(+) diff --git a/meson.build b/meson.build index 2f6892a0..c2f80adc 100644 --- a/meson.build +++ b/meson.build @@ -4,6 +4,8 @@ project('Hyprland', 'cpp', 'c', 'warning_level=2', 'default_library=static', 'optimization=3', + 'buildtype=release', + 'debug=false' # 'cpp_std=c++23' # not yet supported by meson, as of version 0.63.0 ])