aboutsummaryrefslogtreecommitdiffstats
path: root/meson_options.txt
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2023-05-03 11:53:40 -0400
committerDavid Robillard <d@drobilla.net>2023-05-03 11:58:03 -0400
commit83c02756c8f48fc54c6e2cf96edb9245d891396a (patch)
treef73f3bc081caf7cf6b9efb5082fcf88c2257f6dd /meson_options.txt
parent1a2160b236c06275214f36075dc4e8f05d2ecc64 (diff)
downloadpugl-83c02756c8f48fc54c6e2cf96edb9245d891396a.tar.gz
pugl-83c02756c8f48fc54c6e2cf96edb9245d891396a.tar.bz2
pugl-83c02756c8f48fc54c6e2cf96edb9245d891396a.zip
Replace strict option with new meson warning level
Diffstat (limited to 'meson_options.txt')
-rw-r--r--meson_options.txt8
1 files changed, 4 insertions, 4 deletions
diff --git a/meson_options.txt b/meson_options.txt
index eac6969..bca000a 100644
--- a/meson_options.txt
+++ b/meson_options.txt
@@ -1,4 +1,4 @@
-# Copyright 2021-2022 David Robillard <d@drobilla.net>
+# Copyright 2021-2023 David Robillard <d@drobilla.net>
# SPDX-License-Identifier: 0BSD OR ISC
option('cairo', type: 'feature', value: 'auto',
@@ -13,12 +13,12 @@ option('docs', type: 'feature', value: 'auto',
option('docs_cpp', type: 'boolean', value: false,
description: 'Attempt to build C++ documentation for development')
+option('lint', type: 'boolean', value: false, yield: true,
+ description: 'Run code quality checks')
+
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 for developers')
-
option('stub', type: 'boolean', value: true,
description: 'Build stub backend')