diff options
author | David Robillard <d@drobilla.net> | 2025-02-11 08:44:47 -0500 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2025-02-11 08:44:47 -0500 |
commit | 66afe808e8c17f41cf6122158df96361cb42cccb (patch) | |
tree | ed2240f7d475274e7c55336dbc3ede1b87ac8f14 | |
parent | da7d3145641afec3727839b58d58138a67ecc729 (diff) | |
download | pugl-66afe808e8c17f41cf6122158df96361cb42cccb.tar.gz pugl-66afe808e8c17f41cf6122158df96361cb42cccb.tar.bz2 pugl-66afe808e8c17f41cf6122158df96361cb42cccb.zip |
-rw-r--r-- | meson_options.txt | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/meson_options.txt b/meson_options.txt index fa55c67..571a640 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -1,21 +1,21 @@ # Copyright 2021-2025 David Robillard <d@drobilla.net> # SPDX-License-Identifier: 0BSD OR ISC -option('cairo', type: 'feature', - description: 'Enable support for the Cairo graphics API') - -option('examples', type: 'feature', yield: true, - description: 'Build example programs') - option('bindings_cpp', type: 'feature', yield: true, description: 'Build C++ bindings') +option('cairo', type: 'feature', + description: 'Enable support for the Cairo graphics API') + option('docs', type: 'feature', yield: true, description: 'Build documentation') option('docs_cpp', type: 'boolean', value: false, description: 'Attempt to build C++ documentation for development') +option('examples', type: 'feature', yield: true, + description: 'Build example programs') + option('lint', type: 'boolean', value: false, yield: true, description: 'Run code quality checks') |