[geary/wip/beta-profile] Add beta build profile



commit a02a1aac8b9a26c4089b587c91e94f7124e9b246
Author: Michael Gratton <mike vee net>
Date:   Wed Aug 28 22:13:01 2019 +1000

    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'
 )


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]