This website works better with JavaScript.
Home
Explore
Help
Sign In
Archivist
/
raylib-src
mirror of
https://github.com/raysan5/raylib
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
24
Wiki
Activity
Browse Source
Meson: use gnu99
We use variable init in for loops, so need c99.
pull/303/head
Michael Vetter
8 years ago
parent
4b1bc7f65e
commit
4fad1607ed
1 changed files
with
2 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+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')
Write
Preview
Loading…
Cancel
Save