This adds a configuration option in meson, if set it changes the application ID allowing for stable and development version to be run at the same time.
10 lines
111 B
Meson
10 lines
111 B
Meson
option (
|
|
'profile',
|
|
type: 'combo',
|
|
choices: [
|
|
'default',
|
|
'development'
|
|
],
|
|
value: 'default'
|
|
)
|