aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGerd Hoffmann <kraxel@redhat.com>2017-06-01 09:33:54 +0200
committerGerd Hoffmann <kraxel@redhat.com>2017-06-01 09:33:54 +0200
commit838151f23d7c8c63c7987e2c0dea051da1f8ce05 (patch)
treed899372645620ef7b1f2ccd0c08db3a475dd2297
parent69d1e04bde1bde9d4fcdceeff10b5a1898986339 (diff)
downloadvconsole-838151f23d7c8c63c7987e2c0dea051da1f8ce05.tar.gz
meson: turn off pointer sign warnings
-rw-r--r--meson.build3
1 files changed, 3 insertions, 0 deletions
diff --git a/meson.build b/meson.build
index 1f10e20..0b261fe 100644
--- a/meson.build
+++ b/meson.build
@@ -1,6 +1,9 @@
# -*-python-*-
project('vconsole', 'c')
+# tweak warnings
+add_global_arguments('-Wno-pointer-sign', language : 'c')
+
# init configuration
config = configuration_data()
version = run_command('cat', 'VERSION')