envision/meson_options.txt
Gabriele Musco 46df6d36e5
Some checks are pending
/ cargo-fmtcheck (push) Waiting to run
/ cargo-clippy (push) Waiting to run
/ cargo-test (push) Waiting to run
/ appimage (push) Waiting to run
fix: build profile can be specified manually
2024-12-08 12:15:00 +01:00

18 lines
315 B
Meson

option(
'profile',
type: 'combo',
choices: [
'default',
'release',
'development'
],
value: 'default',
description: 'The build profile. One of "default" or "development".'
)
option(
'debugbuild',
type: 'boolean',
value: false,
description: 'Build in debug mode, false by default.'
)