diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2017-06-01 09:33:54 +0200 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2017-06-01 09:33:54 +0200 |
commit | 838151f23d7c8c63c7987e2c0dea051da1f8ce05 (patch) | |
tree | d899372645620ef7b1f2ccd0c08db3a475dd2297 /meson.build | |
parent | 69d1e04bde1bde9d4fcdceeff10b5a1898986339 (diff) | |
download | vconsole-838151f23d7c8c63c7987e2c0dea051da1f8ce05.tar.gz |
meson: turn off pointer sign warnings
Diffstat (limited to 'meson.build')
-rw-r--r-- | meson.build | 3 |
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') |