diff options
author | David Robillard <d@drobilla.net> | 2022-08-18 12:53:58 -0400 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2022-08-18 12:54:53 -0400 |
commit | 0ed4cc9516c5258f18060e89be3057caaef01912 (patch) | |
tree | ed3aeafeba5badbbf3b0229df5c6c8ce945b3cb0 /meson_options.txt | |
parent | f83fb4a252b4eeef1c8b5696e2d604a946385e82 (diff) | |
download | zix-0ed4cc9516c5258f18060e89be3057caaef01912.tar.gz zix-0ed4cc9516c5258f18060e89be3057caaef01912.tar.bz2 zix-0ed4cc9516c5258f18060e89be3057caaef01912.zip |
Sort meson option definitions
Diffstat (limited to 'meson_options.txt')
-rw-r--r-- | meson_options.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/meson_options.txt b/meson_options.txt index ef032fb..0017280 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -4,11 +4,11 @@ option('benchmarks', type: 'feature', value: 'auto', yield: true, option('checks', type: 'boolean', value: true, yield: true, description: 'Check for features with the build system') +option('posix', type: 'feature', value: 'auto', yield: true, + description: 'Use POSIX system facilities') + 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('posix', type: 'feature', value: 'auto', yield: true, - description: 'Use POSIX system facilities') |