mirror of
https://github.com/raysan5/raylib.git
synced 2025-10-17 23:31:47 +00:00
Add meson files for basic Linux building
This commit is contained in:
19
src/meson.build
Normal file
19
src/meson.build
Normal file
@@ -0,0 +1,19 @@
|
||||
install_headers('raylib.h')
|
||||
|
||||
source_c = [
|
||||
'audio.c',
|
||||
'core.c',
|
||||
'models.c',
|
||||
'rlgl.c',
|
||||
'shapes.c',
|
||||
'text.c',
|
||||
'textures.c',
|
||||
'utils.c',
|
||||
'external/stb_vorbis.c',
|
||||
]
|
||||
|
||||
raylib = shared_library('raylib',
|
||||
source_c,
|
||||
dependencies : [ glfw_dep, gl_dep, openal_dep, m_dep, x11_dep],
|
||||
install : true)
|
||||
|
Reference in New Issue
Block a user