|
|
@ -4,7 +4,7 @@ compiler = meson.get_compiler('cpp')
|
|
|
|
|
|
|
|
|
|
|
|
raylib = dependency('raylib', required: false)
|
|
|
|
raylib = dependency('raylib', required: false)
|
|
|
|
if not raylib.found()
|
|
|
|
if not raylib.found()
|
|
|
|
raylib = meson.find_library('raylib', has_headers: ['raylib.h', 'raymath.h'], required: true)
|
|
|
|
raylib = compiler.find_library('raylib', has_headers: ['raylib.h', 'raymath.h'], required: true)
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
|
|
|
|
|
|
|
ws2_dep = compiler.find_library('ws2_32', required: false)
|
|
|
|
ws2_dep = compiler.find_library('ws2_32', required: false)
|
|
|
|