summaryrefslogtreecommitdiffhomepage
path: root/project
diff options
context:
space:
mode:
authorMichael Vetter <[email protected]>2018-02-16 11:53:04 +0100
committerMichael Vetter <[email protected]>2018-02-16 11:53:04 +0100
commit883ed20e7c40009f116334fc2b7cf747942c68f2 (patch)
tree97e4117410506ed9753c1526dc745d6694a0b803 /project
parente0a3a51b753ae20727bac9191da9b62f32c92d83 (diff)
downloadraylib-883ed20e7c40009f116334fc2b7cf747942c68f2.tar.gz
raylib-883ed20e7c40009f116334fc2b7cf747942c68f2.zip
Add note about glfw3 and openAL
Diffstat (limited to 'project')
-rw-r--r--project/Builder/README.md3
-rw-r--r--project/Builder/meson.build1
2 files changed, 4 insertions, 0 deletions
diff --git a/project/Builder/README.md b/project/Builder/README.md
index 1696e0d2..556806ab 100644
--- a/project/Builder/README.md
+++ b/project/Builder/README.md
@@ -21,3 +21,6 @@ In the provided file we assume that the build file is located at the root folder
Check out the `examples` directory for a simple example on how to use this template.
You can also look at [raymario](https://github.com/jubalh/raymario) for a slightly more complex example which also installs resource files.
+
+# Notice
+The files provided link against glfw3 and openAL because the latest stable version of raylib is version 1.8, which still needs this. For later versions these two dependencies are not necessary anymore.
diff --git a/project/Builder/meson.build b/project/Builder/meson.build
index 4908736c..41b37fdc 100644
--- a/project/Builder/meson.build
+++ b/project/Builder/meson.build
@@ -9,6 +9,7 @@ project('projectname', 'c', version: '1.0',
cc = meson.get_compiler('c')
# Find dependencies
+# glfw3 and openal are not needed for raylib > 1.8.0
glfw_dep = dependency('glfw3')
gl_dep = dependency('gl')
openal_dep = dependency('openal')