summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTomi Valkeinen <tomi.valkeinen@ti.com>2020-12-16 10:05:37 +0200
committerTomi Valkeinen <tomi.valkeinen@ti.com>2020-12-16 10:19:36 +0200
commit4da4b0744378d7eb07d51919b4110c00c3f75ae9 (patch)
treeecda71cce1aff4d440a2ad5fa41cad71c849965e
parentfdffbcdc0b0e63a6ba47d23b662cd992b4f4cede (diff)
meson_options: add descriptions and reorganize
Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
-rw-r--r--meson_options.txt19
1 files changed, 14 insertions, 5 deletions
diff --git a/meson_options.txt b/meson_options.txt
index cd854ab..754db32 100644
--- a/meson_options.txt
+++ b/meson_options.txt
@@ -1,5 +1,14 @@
-option('kmscube', type : 'boolean', value : false)
-option('pykms', type : 'feature', value : 'auto')
-option('omap', type : 'feature', value : 'auto')
-option('static-libc', type : 'boolean', value : false)
-option('utils', type : 'boolean', value : true)
+option('omap', type : 'feature', value : 'auto',
+ description : 'Build omapdrm extensions')
+
+option('static-libc', type : 'boolean', value : false,
+ description : 'Build with -static-libgcc -static-libstdc++')
+
+option('utils', type : 'boolean', value : true,
+ description : 'Build kms++utils library and an assortment of utils and tests')
+
+option('pykms', type : 'feature', value : 'auto',
+ description : 'Build python bindings')
+
+option('kmscube', type : 'boolean', value : false,
+ description : 'Build kmscube test application')