diff options
| author | Michael Vetter <jubalh@openmailbox.org> | 2017-06-11 23:53:03 +0200 |
|---|---|---|
| committer | Michael Vetter <jubalh@openmailbox.org> | 2017-06-11 23:53:03 +0200 |
| commit | 4fad1607ed694e126a04fc7d79fa2b11f76232c1 (patch) | |
| tree | 01672f0179dc60ada09abb7e2517d65a022b7da2 | |
| parent | 4b1bc7f65eb535aa1d9108e9db080e9179f02f62 (diff) | |
| download | raylib-4fad1607ed694e126a04fc7d79fa2b11f76232c1.tar.gz raylib-4fad1607ed694e126a04fc7d79fa2b11f76232c1.zip | |
Meson: use gnu99
We use variable init in for loops, so need c99.
| -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') |
