Add beta build profile
This commit is contained in:
parent
56b3ce9833
commit
a02a1aac8b
2 changed files with 5 additions and 2 deletions
|
|
@ -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 = ''
|
||||
|
|
|
|||
|
|
@ -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'
|
||||
)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue