Update Builder example

Update Builder example for raylib 2.0.0.
External OpenAL and GLFW are not required anymore.
This commit is contained in:
Michael Vetter 2018-07-25 13:01:16 +02:00
parent 94b0c49f5d
commit 01197172cc
3 changed files with 2 additions and 10 deletions

View file

@ -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)