summaryrefslogtreecommitdiff
path: root/meson_options.txt
diff options
context:
space:
mode:
authorTomi Valkeinen <tomi.valkeinen@ti.com>2020-12-16 09:18:24 +0200
committerTomi Valkeinen <tomi.valkeinen@ti.com>2020-12-16 10:22:03 +0200
commite7224eb5355654db439b14362d19063acd7aec27 (patch)
treef9f49fc7eda7d05231d53c52f54f727c3b4c6826 /meson_options.txt
parentf2ed55fda6f520f60f92f2cf9becdc52616f4460 (diff)
meson: add option to use system pybind11 or subproject
Add 'system-pybind11' option. enabled = use pybind11 from the system disabled = use pybind11 from meson subproject auto = use pybind11 from the system, or, if not available, subproject Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
Diffstat (limited to 'meson_options.txt')
-rw-r--r--meson_options.txt3
1 files changed, 3 insertions, 0 deletions
diff --git a/meson_options.txt b/meson_options.txt
index 754db32..da6dc93 100644
--- a/meson_options.txt
+++ b/meson_options.txt
@@ -10,5 +10,8 @@ option('utils', type : 'boolean', value : true,
option('pykms', type : 'feature', value : 'auto',
description : 'Build python bindings')
+option('system-pybind11', type : 'feature', value : 'auto',
+ description : 'Use pybind11 from the system or from meson subproject')
+
option('kmscube', type : 'boolean', value : false,
description : 'Build kmscube test application')