mirror of
https://gitlab.gnome.org/GNOME/libsecret.git
synced 2024-12-22 04:38:55 +00:00
28486191b2
This turns the `-Dgcrypt` build time option into a more generic `-Dcrypto` option, which enables user to choose which cryptographic library to link with. It currently supports libgcrypt (`libgcrypt`) and GnuTLS (`gnutls`); for the latter, GnuTLS 3.8.2 is the minimum required version. Signed-off-by: Daiki Ueno <dueno@src.gnome.org>
10 lines
917 B
Meson
10 lines
917 B
Meson
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')
|