summaryrefslogtreecommitdiff
path: root/meson_options.txt
diff options
context:
space:
mode:
authorPeter Hutterer <peter.hutterer@who-t.net>2018-05-11 14:09:40 +1000
committerPeter Hutterer <peter.hutterer@who-t.net>2018-05-16 14:23:12 +1000
commit8178339b5baa717cccc1ddb506f70eaf9a0c8832 (patch)
tree8778516b5c26a7c059a4aa4b076f2602c092b878 /meson_options.txt
parent2d111826899d788eac3b76ecca902598a9e730b3 (diff)
downloadlibinput-8178339b5baa717cccc1ddb506f70eaf9a0c8832.tar.gz
meson: add a 'coverity' option to fix the build
Coverity screwed up something so we can't submit builds right now, the compilation units all fail. math.h pulls in a _Float128 type that coverity cannot handle. So as a workaround, add an option to the build to avoid this and remove it when the next version of coverity hopefully fixes this. Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
Diffstat (limited to 'meson_options.txt')
-rw-r--r--meson_options.txt4
1 files changed, 4 insertions, 0 deletions
diff --git a/meson_options.txt b/meson_options.txt
index 144f9160..280cf49f 100644
--- a/meson_options.txt
+++ b/meson_options.txt
@@ -18,3 +18,7 @@ option('documentation',
type: 'boolean',
value: true,
description: 'Build the documentation [default=true]')
+option('coverity',
+ type: 'boolean',
+ value: false,
+ description: 'Enable coverity build fixes, see meson.build for details [default=false]')