diff options
author | David Robillard <d@drobilla.net> | 2022-07-17 17:33:37 -0400 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2022-07-18 20:10:45 -0400 |
commit | e2731cf7008b2f1f9e1f44283b07c3fe0296bbee (patch) | |
tree | 7e24b7005920af4d0e969000dc80e3fdffe3eb41 /meson_options.txt | |
parent | 1cda90c39e4b2c55c775cd6bd6dcb08aee4d640d (diff) | |
download | sord-e2731cf7008b2f1f9e1f44283b07c3fe0296bbee.tar.gz sord-e2731cf7008b2f1f9e1f44283b07c3fe0296bbee.tar.bz2 sord-e2731cf7008b2f1f9e1f44283b07c3fe0296bbee.zip |
Switch to meson build system
Diffstat (limited to 'meson_options.txt')
-rw-r--r-- | meson_options.txt | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/meson_options.txt b/meson_options.txt new file mode 100644 index 0000000..4fb4168 --- /dev/null +++ b/meson_options.txt @@ -0,0 +1,14 @@ +option('docs', type: 'feature', value: 'auto', yield: true, + description: 'Build documentation') + +option('strict', type: 'boolean', value: false, yield: true, + description: 'Enable ultra-strict warnings') + +option('tests', type: 'feature', value: 'auto', yield: true, + description: 'Build tests') + +option('title', type: 'string', value: 'Sord', + description: 'Project title') + +option('tools', type: 'feature', value: 'auto', yield: true, + description: 'Build command line utilities') |