From ff037ab89ff3d420400eef59e5f5e4a1ddf4cf86 Mon Sep 17 00:00:00 2001 From: Niels De Graef Date: Sun, 26 Jan 2025 23:39:37 +0100 Subject: [PATCH] meson: use newlines for build options --- meson_options.txt | 73 ++++++++++++++++++++++++++++++++++++++++------- 1 file changed, 63 insertions(+), 10 deletions(-) diff --git a/meson_options.txt b/meson_options.txt index 936eff8..70f1c4e 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -1,10 +1,63 @@ -option('manpage', type: 'boolean', value: true, description: 'Build man pages') -option('crypto', type: 'combo', choices: ['libgcrypt', 'gnutls', 'disabled'], value: 'libgcrypt', description: 'Backend library to implement transport encryption') -option('debugging', type: 'boolean', value: false, description: 'Turn debugging on/off') -option('vapi', type: 'boolean', value: true, description: 'Create VAPI file.') -option('gtk_doc', type: 'boolean', value: true, description: 'Build reference documentation using gi-docgen') -option('introspection', type: 'boolean', value: true, description: 'Create GIR file.') -option('bashcompdir', type: 'string', value: '', description: 'Override default location for bash completion files') -option('bash_completion', type: 'feature', value: 'auto', description: 'Install bash completion files') -option('tpm2', type: 'boolean', value: false, description: 'With TPM2 Software Stack') -option('pam', type: 'boolean', value: false, description: 'Build PAM module') +option('manpage', + type: 'boolean', + value: true, + description: 'Build man pages', +) + +option('crypto', + type: 'combo', + choices: ['libgcrypt', + 'gnutls', + 'disabled'], + value: 'libgcrypt', + description: 'Backend library to implement transport encryption', +) + +option('debugging', + type: 'boolean', + value: false, + description: 'Turn debugging on/off', +) + +option('vapi', + type: 'boolean', + value: true, + description: 'Create VAPI file.', +) + +option('gtk_doc', + type: 'boolean', + value: true, + description: 'Build reference documentation using gi-docgen', +) + +option('introspection', + type: 'boolean', + value: true, + description: 'Create GIR file.', +) + +option('bashcompdir', + type: 'string', + value: '', + description: 'Override default location for bash completion files', +) + +option('bash_completion', + type: 'feature', + value: 'auto', + description: 'Install bash completion files', +) + +option('tpm2', + type: 'boolean', + value: false, + description: 'With TPM2 Software Stack', +) + +option('pam', + type: 'boolean', + value: false, + description: 'Build PAM module', +) +