2017-06-08 15:26:37 +00:00
|
|
|
project('raylib', 'c', version: '1.7.0',
|
|
|
|
license: 'zlib',
|
2017-06-11 09:25:50 +00:00
|
|
|
meson_version: '>= 0.39.1',
|
|
|
|
default_options : 'c_std=gnu99')
|
2017-06-08 15:26:37 +00:00
|
|
|
|
|
|
|
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')
|
|
|
|
|