- Add option to meson file to build with gnu99 because:

* CLOCK_MONOTONIC macro
  * var init in for loops (c99)

OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/raylib?expand=0&rev=5
This commit is contained in:
Michael Vetter 2017-06-11 09:25:50 +00:00 committed by Git OBS Bridge
parent 55c40bc99f
commit edf39da9dc
2 changed files with 9 additions and 1 deletions

View File

@ -1,3 +1,10 @@
-------------------------------------------------------------------
Sun Jun 11 09:24:49 UTC 2017 - mvetter@suse.com
- Add option to meson file to build with gnu99 because:
* CLOCK_MONOTONIC macro
* var init in for loops (c99)
-------------------------------------------------------------------
Sun Jun 11 06:40:24 UTC 2017 - mvetter@suse.com

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