From a85644cad502b7d4c79e13d6700a2b47070038ab Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?K=C3=A9vin=20Commaille?= Date: Sat, 29 Apr 2023 14:28:18 +0200 Subject: [PATCH] build: Add beta profile --- meson.build | 3 +++ meson_options.txt | 3 ++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/meson.build b/meson.build index e74cd2a8..2a444437 100644 --- a/meson.build +++ b/meson.build @@ -56,6 +56,9 @@ if get_option('profile') == 'hack' elif get_option('profile') == 'development' is_release = false profile = 'Devel' +elif get_option('profile') == 'beta' + is_release = true + profile = 'Beta' else is_release = true profile = '' diff --git a/meson_options.txt b/meson_options.txt index d539538d..12d03017 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -3,9 +3,10 @@ option( type: 'combo', choices: [ 'default', + 'beta', 'development', 'hack', ], value: 'default', - description: 'The build profile for Fractal. One of "default", "development" or "hack".' + description: 'The build profile for Fractal. One of "default", "beta", "development" or "hack".' )