Add beta build profile

This commit is contained in:
Michael Gratton 2019-08-28 22:13:01 +10:00
parent 56b3ce9833
commit a02a1aac8b
2 changed files with 5 additions and 2 deletions

View file

@ -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 = ''

View file

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