summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorColomban Wendling <[email protected]>2023-01-31 12:08:27 +0100
committerraveit65 <[email protected]>2023-04-20 22:36:17 +0200
commit2ee900546fd733374c99b4df3b9206655ab70ae0 (patch)
treee3177244fd2bd7cdc3fd08436e6a070c922757c4
parenta7a1ca6da3b56e063210c834c1da10e86f02d8c6 (diff)
downloadmarco-2ee900546fd733374c99b4df3b9206655ab70ae0.tar.bz2
marco-2ee900546fd733374c99b4df3b9206655ab70ae0.tar.xz
meson: Enable verbose mode support by default in line with Autoconf
Verbose mode is not active by default when running Marco, but can be toggled dynamically to help debug issues, possibly as they happen. This should only be disabled for very performance-sensitive or size-sensitive builds, but not for the regular case where it can be very useful to debug a user issue.
-rw-r--r--meson_options.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/meson_options.txt b/meson_options.txt
index c57ba6ec..5b7d75fc 100644
--- a/meson_options.txt
+++ b/meson_options.txt
@@ -1,6 +1,6 @@
option('verbose-mode',
- type: 'boolean', value: false,
- description: 'verbose logging, for embedded/size-sensitive custom builds')
+ type: 'boolean', value: true,
+ description: 'verbose logging, disable for embedded/size-sensitive custom builds')
option('sm',
type: 'boolean', value: true,