Browse Source

Meson: use gnu99

We use variable init in for loops, so need c99.
pull/303/head
Michael Vetter 8 years ago
parent
commit
4fad1607ed
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      meson.build

+ 2
- 1
meson.build View File

@ -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')

Loading…
Cancel
Save