build: Add beta profile

This commit is contained in:
Kévin Commaille 2023-04-29 14:28:18 +02:00
parent 6471cb9675
commit a85644cad5
No known key found for this signature in database
GPG key ID: 29A48C1F03620416
2 changed files with 5 additions and 1 deletions

View file

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

View file

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