diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2018-09-14 13:13:50 +0200 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2018-09-14 13:13:50 +0200 |
commit | 924463a0c199463bad8c922cbda3cb76b194fe18 (patch) | |
tree | bdc1c22f5dde57d2250d64c8415907341cfee132 /meson.build | |
parent | cf793a21bc603ad3aa007d7c672b3ff5038d918b (diff) | |
download | drminfo-924463a0c199463bad8c922cbda3cb76b194fe18.tar.gz |
use c99 for meson build
Diffstat (limited to 'meson.build')
-rw-r--r-- | meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meson.build b/meson.build index 4869a53..cd7e728 100644 --- a/meson.build +++ b/meson.build @@ -1,4 +1,4 @@ -project('drminfo', 'c') +project('drminfo', 'c', default_options : [ 'c_std=c99' ] ) # pkg-config deps libdrm_dep = dependency('libdrm') |