From a02a1aac8b9a26c4089b587c91e94f7124e9b246 Mon Sep 17 00:00:00 2001 From: Michael Gratton Date: Wed, 28 Aug 2019 22:13:01 +1000 Subject: [PATCH] Add beta build profile --- meson.build | 3 +++ meson_options.txt | 4 ++-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/meson.build b/meson.build index 7af17160..ac41c1ad 100644 --- a/meson.build +++ b/meson.build @@ -21,6 +21,9 @@ revno = run_command('build-aux/git_version.py').stdout().strip() if get_option('profile') == 'development' profile = 'Devel' name_suffix = ' (Development)' +elif get_option('profile') == 'beta' + profile = 'Beta' + name_suffix = ' (Beta)' else profile = '' name_suffix = '' diff --git a/meson_options.txt b/meson_options.txt index f6c64613..a1f1b7c6 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -10,6 +10,6 @@ option( 'profile', type: 'combo', value: 'default', - choices: ['default','development'], - description: 'The build profile for Geary. One of "default" or "development".' + choices: ['default','development','beta'], + description: 'Specifies the application type to be built' )