summaryrefslogtreecommitdiff
path: root/meson_options.txt
diff options
context:
space:
mode:
authorSimon Ser <simon.ser@intel.com>2019-07-05 16:42:23 +0300
committerSimon Ser <simon.ser@intel.com>2019-07-16 11:58:34 +0300
commit0ea68a1efbfcc4961f2f816ab59e4ad8136c6250 (patch)
treea8b7d4d42f8e03ac978e6148a30e13c78db9bc41 /meson_options.txt
parentb9cac102542f2fbbbed9e5aa2b1ac04ec3795bc6 (diff)
build: rename Meson options
Meson emits a warning because we use options beginning with "build_": DEPRECATION: Option uses prefix "build_", which is reserved for Meson. This will become an error in the future. Rename our options so that we don't use the Meson-reserved prefix. Signed-off-by: Simon Ser <simon.ser@intel.com> Reviewed-by: Arkadiusz Hiler <arkadiusz.hiler@intel.com>
Diffstat (limited to 'meson_options.txt')
-rw-r--r--meson_options.txt22
1 files changed, 11 insertions, 11 deletions
diff --git a/meson_options.txt b/meson_options.txt
index 9cca0c4f..8e2e1cf0 100644
--- a/meson_options.txt
+++ b/meson_options.txt
@@ -1,6 +1,6 @@
-option('build_overlay',
+option('overlay',
type : 'feature',
- description : 'Build overlay')
+ description : 'Build overlay tool')
option('overlay_backends',
type : 'array',
@@ -8,37 +8,37 @@ option('overlay_backends',
choices : [ 'auto', 'x', 'xv' ],
description : 'Overlay backends to enable')
-option('build_chamelium',
+option('chamelium',
type : 'feature',
- description : 'Build chamelium test')
+ description : 'Build Chamelium test')
-option('with_valgrind',
+option('valgrind',
type : 'feature',
description : 'Build with support for valgrind annotations')
-option('build_man',
+option('man',
type : 'feature',
description : 'Build man pages')
-option('build_docs',
+option('docs',
type : 'feature',
description : 'Build documentation')
-option('build_tests',
+option('tests',
type : 'feature',
description : 'Build tests')
-option('with_libdrm',
+option('libdrm_drivers',
type : 'array',
value : ['auto'],
choices : ['', 'auto', 'intel', 'nouveau', 'amdgpu'],
description : 'libdrm libraries to be used')
-option('with_libunwind',
+option('libunwind',
type : 'feature',
description : 'Use libunwind')
-option('build_runner',
+option('runner',
type : 'feature',
description : 'Build test runner')