diff options
| author | Ray <raysan5@gmail.com> | 2017-06-11 23:59:29 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-06-11 23:59:29 +0200 |
| commit | eee8393eb0fd697a3e86d822a4e187c6b487723b (patch) | |
| tree | 3fd1e69e3b38f4c354d5a69259d150632e0f152b | |
| parent | 5370fe18e08303afdffcb78b428b92e8205fbc76 (diff) | |
| parent | 4fad1607ed694e126a04fc7d79fa2b11f76232c1 (diff) | |
| download | raylib-eee8393eb0fd697a3e86d822a4e187c6b487723b.tar.gz raylib-eee8393eb0fd697a3e86d822a4e187c6b487723b.zip | |
Merge pull request #303 from jubalh/mesongnu
Meson: use gnu99
| -rw-r--r-- | meson.build | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/meson.build b/meson.build index 4ac6c317..dc59d067 100644 --- a/meson.build +++ b/meson.build @@ -1,6 +1,7 @@ project('raylib', 'c', version: '1.7.0', license: 'zlib', - meson_version: '>= 0.39.1') + meson_version: '>= 0.39.1', + default_options : 'c_std=gnu99') cc = meson.get_compiler('c') |
