From 28c65c64e60fc30fa5b5c6db04761058c9e852bb Mon Sep 17 00:00:00 2001 From: Alexis Date: Thu, 30 Aug 2018 11:30:20 +0200 Subject: [PATCH] chore: add default build type --- meson.build | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 43d6c03d..b330dfed 100644 --- a/meson.build +++ b/meson.build @@ -2,7 +2,10 @@ project( 'waybar', 'cpp', 'c', version: '0.0.5', license: 'MIT', - default_options : ['cpp_std=c++17'], + default_options : [ + 'cpp_std=c++17', + 'buildtype=release' + ], ) cpp_args = []