SHA256
1
0
forked from pool/raylib
raylib/root-meson.build
Michael Vetter 64fd0c0d0c - Use meson to build raylib:
* Takes care of creating proper so versioning
  * Install works (where their makefiles didnt)
- Add root-meson.build
- Add src-meson.build
  Meson files will be in next release, see:
  https://github.com/raysan5/raylib/pull/297
  See: https://github.com/raysan5/raylib/pull/295

OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/raylib?expand=0&rev=2
2017-06-08 15:26:37 +00:00

15 lines
303 B
Plaintext

project('raylib', 'c', version: '1.7.0',
license: 'zlib',
meson_version: '>= 0.39.1')
cc = meson.get_compiler('c')
glfw_dep = dependency('glfw3')
gl_dep = dependency('gl')
openal_dep = dependency('openal')
x11_dep = dependency('x11')
m_dep = cc.find_library('m', required : false)
subdir('src')