diff options
author | David Robillard <d@drobilla.net> | 2025-02-06 20:50:15 -0500 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2025-02-06 20:50:15 -0500 |
commit | 2c52c6ec921130bed612b96c2939207391d5237c (patch) | |
tree | 28bc533ed2c6932a803c2e77e96935fba30c8819 /meson_options.txt | |
parent | 86b30b3db30909c025b9c42a10078d64a66c813a (diff) | |
download | pugl-2c52c6ec921130bed612b96c2939207391d5237c.tar.gz pugl-2c52c6ec921130bed612b96c2939207391d5237c.tar.bz2 pugl-2c52c6ec921130bed612b96c2939207391d5237c.zip |
Add option to disable C++ bindings
Diffstat (limited to 'meson_options.txt')
-rw-r--r-- | meson_options.txt | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/meson_options.txt b/meson_options.txt index 6e92100..fa55c67 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -1,4 +1,4 @@ -# Copyright 2021-2024 David Robillard <d@drobilla.net> +# Copyright 2021-2025 David Robillard <d@drobilla.net> # SPDX-License-Identifier: 0BSD OR ISC option('cairo', type: 'feature', @@ -7,6 +7,9 @@ option('cairo', type: 'feature', option('examples', type: 'feature', yield: true, description: 'Build example programs') +option('bindings_cpp', type: 'feature', yield: true, + description: 'Build C++ bindings') + option('docs', type: 'feature', yield: true, description: 'Build documentation') |