Add meson files for basic Linux building

This commit is contained in:
Michael Vetter
2017-06-04 23:21:41 +02:00
parent 1adc031301
commit 9c524ee3a6
3 changed files with 35 additions and 0 deletions

14
meson.build Normal file
View File

@ -0,0 +1,14 @@
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')