From 4da4b0744378d7eb07d51919b4110c00c3f75ae9 Mon Sep 17 00:00:00 2001 From: Tomi Valkeinen Date: Wed, 16 Dec 2020 10:05:37 +0200 Subject: meson_options: add descriptions and reorganize Signed-off-by: Tomi Valkeinen --- meson_options.txt | 19 ++++++++++++++----- 1 file 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') -- cgit v1.2.3