Browse Source

build: Add beta profile

merge-requests/1327/merge
Kévin Commaille 3 years ago
parent
commit
a85644cad5
No known key found for this signature in database
GPG Key ID: 29A48C1F03620416
  1. 3
      meson.build
  2. 3
      meson_options.txt

3
meson.build

@ -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
meson_options.txt

@ -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…
Cancel
Save