diff options
author | David Robillard <d@drobilla.net> | 2021-01-06 23:53:33 +0100 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2021-01-08 18:13:49 +0100 |
commit | 69d5d2adde1d13578a94e8b1934235987cf9b2bd (patch) | |
tree | 9720c044447bb12e6e714ac969ebb7b0daf87c5f /meson_options.txt | |
parent | 94e30b9c3c188dfdf4765f026872f95ea3cfdda2 (diff) | |
download | pugl-69d5d2adde1d13578a94e8b1934235987cf9b2bd.tar.gz pugl-69d5d2adde1d13578a94e8b1934235987cf9b2bd.tar.bz2 pugl-69d5d2adde1d13578a94e8b1934235987cf9b2bd.zip |
Switch to Meson
Diffstat (limited to 'meson_options.txt')
-rw-r--r-- | meson_options.txt | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/meson_options.txt b/meson_options.txt new file mode 100644 index 0000000..dd6ea8c --- /dev/null +++ b/meson_options.txt @@ -0,0 +1,20 @@ +option('cairo', type: 'feature', value: 'auto', + description : 'Enable support for the Cairo graphics API') + +option('examples', type: 'boolean', value: true, + description: 'Build example programs') + +option('docs', type: 'feature', value: 'auto', + description: 'Build documentation') + +option('opengl', type: 'feature', value: 'auto', + description : 'Enable support for the OpenGL graphics API') + +option('strict', type: 'boolean', value: false, + description: 'Enable ultra-strict warnings') + +option('tests', type: 'boolean', value: true, + description: 'Build tests') + +option('vulkan', type: 'feature', value: 'auto', + description : 'Enable support for the Vulkan graphics API') |