Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
appstream/meson_options.txt
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
70 lines (68 sloc)
1.82 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| option('stemming', | |
| type : 'boolean', | |
| value : true, | |
| description : 'Use stemming while searching. Requires Snowball (libstemmer)' | |
| ) | |
| option('systemd', | |
| type : 'boolean', | |
| value : true, | |
| description : 'Build with systemd support' | |
| ) | |
| option('vapi', | |
| type : 'boolean', | |
| value : false, | |
| description : 'Create and install a Vala API file. Requires "gir" to be enabled as well' | |
| ) | |
| option('qt', | |
| type : 'boolean', | |
| value : false, | |
| description : 'Build libappstream-qt' | |
| ) | |
| option('compose', | |
| type : 'boolean', | |
| value : false, | |
| description : 'Build libappstream-compose library and `appstreamcli compose` tool' | |
| ) | |
| option('apt-support', | |
| type : 'boolean', | |
| value : false, | |
| description : 'Enable integration with APT on Debian' | |
| ) | |
| option('gir', | |
| type : 'boolean', | |
| value : true, | |
| description : 'Build introspection data' | |
| ) | |
| option('svg-support', | |
| type : 'boolean', | |
| value : true, | |
| description : 'SVG graphics support for compose (only disable this for bootstrapping purposes)' | |
| ) | |
| option('docs', | |
| type : 'boolean', | |
| value : false, | |
| description : 'Build documentation for API and specification' | |
| ) | |
| option('apidocs', | |
| type : 'boolean', | |
| value : true, | |
| description : 'Build API documentation (automatically enabled when "-Ddocs=true" is passed)' | |
| ) | |
| option('install-docs', | |
| type : 'boolean', | |
| value : true, | |
| description : 'Install documentation for API and specification' | |
| ) | |
| # | |
| # For development | |
| # | |
| option('maintainer', | |
| type : 'boolean', | |
| value : false, | |
| description : 'Enable maintainer mode (use strict compiler flags, e.g. -Werror)' | |
| ) | |
| option('static-analysis', | |
| type : 'boolean', | |
| value : false, | |
| description : 'Enable GCC static analysis support' | |
| ) |