summaryrefslogtreecommitdiffhomepage
path: root/projects/Builder/examples
diff options
context:
space:
mode:
authorMichael Vetter <[email protected]>2018-07-25 13:01:16 +0200
committerMichael Vetter <[email protected]>2018-07-25 13:01:16 +0200
commit01197172ccb9976de43f99bb550ba523bb65f744 (patch)
treec7a176245a48f2e3a426c03d66563acc4c6690a1 /projects/Builder/examples
parent94b0c49f5de7811912068de2442d6b998b7fb11d (diff)
downloadraylib-01197172ccb9976de43f99bb550ba523bb65f744.tar.gz
raylib-01197172ccb9976de43f99bb550ba523bb65f744.zip
Update Builder example
Update Builder example for raylib 2.0.0. External OpenAL and GLFW are not required anymore.
Diffstat (limited to 'projects/Builder/examples')
-rw-r--r--projects/Builder/examples/meson.build4
1 files changed, 1 insertions, 3 deletions
diff --git a/projects/Builder/examples/meson.build b/projects/Builder/examples/meson.build
index ab81ca6c..f8b9bd4d 100644
--- a/projects/Builder/examples/meson.build
+++ b/projects/Builder/examples/meson.build
@@ -9,9 +9,7 @@ project('core_basic_window', 'c', version: '1.0',
cc = meson.get_compiler('c')
# Find dependencies
-glfw_dep = dependency('glfw3')
gl_dep = dependency('gl')
-openal_dep = dependency('openal')
m_dep = cc.find_library('m', required : false)
raylib_dep = cc.find_library('raylib', required : false)
@@ -23,5 +21,5 @@ source_c = [
# Build executable
core_basic_window = executable('core_basic_window',
source_c,
- dependencies : [ raylib_dep, glfw_dep, gl_dep, openal_dep, m_dep ],
+ dependencies : [ raylib_dep, gl_dep, m_dep ],
install : true)