build: Add beta profile
This commit is contained in:
parent
6471cb9675
commit
a85644cad5
2 changed files with 5 additions and 1 deletions
|
@ -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 = ''
|
||||
|
|
|
@ -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".'
|
||||
)
|
||||
|
|
Loading…
Reference in a new issue