aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Vetter <jubalh@openmailbox.org>2017-06-13 16:07:57 +0200
committerMichael Vetter <jubalh@openmailbox.org>2017-06-13 16:07:57 +0200
commit03c4ed6b3fbe7927455a84cea033f69f3a8ac35c (patch)
treeefc669b82a5ed73eb7d5d492cf9c6274060b056e
parent8c1f32f2fe25790b3ddd68e8743d488e5b353f8c (diff)
downloadraylib-03c4ed6b3fbe7927455a84cea033f69f3a8ac35c.tar.gz
raylib-03c4ed6b3fbe7927455a84cea033f69f3a8ac35c.zip
Add version info to glfw dependency
glfwSetWindowMonitor and some other functions are only available from 3.2 onwards.
-rw-r--r--meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/meson.build b/meson.build
index dc59d067..12b48a74 100644
--- a/meson.build
+++ b/meson.build
@@ -5,7 +5,7 @@ project('raylib', 'c', version: '1.7.0',
cc = meson.get_compiler('c')
-glfw_dep = dependency('glfw3')
+glfw_dep = dependency('glfw3', version : '>=3.2')
gl_dep = dependency('gl')
openal_dep = dependency('openal')
x11_dep = dependency('x11')