2017-09-25 13:15:48 +03:00
|
|
|
project('raylib', 'c', version: '1.8.0',
|
2017-06-05 00:21:41 +03:00
|
|
|
license: 'zlib',
|
2017-06-12 00:53:03 +03:00
|
|
|
meson_version: '>= 0.39.1',
|
|
|
|
default_options : 'c_std=gnu99')
|
2017-06-05 00:21:41 +03:00
|
|
|
|
|
|
|
cc = meson.get_compiler('c')
|
|
|
|
|
2017-06-13 17:07:57 +03:00
|
|
|
glfw_dep = dependency('glfw3', version : '>=3.2')
|
2017-06-05 00:21:41 +03:00
|
|
|
gl_dep = dependency('gl')
|
|
|
|
openal_dep = dependency('openal')
|
|
|
|
x11_dep = dependency('x11')
|
|
|
|
m_dep = cc.find_library('m', required : false)
|
|
|
|
|
|
|
|
subdir('src')
|
|
|
|
|