diff options
-rw-r--r-- | meson_options.txt | 19 |
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') |