diff options
| author | Michael Vetter <[email protected]> | 2017-06-04 23:21:41 +0200 |
|---|---|---|
| committer | Michael Vetter <[email protected]> | 2017-06-05 14:34:47 +0200 |
| commit | 9c524ee3a66953244b6a849f1161f43b22032724 (patch) | |
| tree | a4193e3c644cb1f14eb6ac5bf0ae0d1e70ae4c53 /src/meson.build | |
| parent | 1adc0313015b30cf061a3bc9d47292f82dc649f8 (diff) | |
| download | raylib-9c524ee3a66953244b6a849f1161f43b22032724.tar.gz raylib-9c524ee3a66953244b6a849f1161f43b22032724.zip | |
Add meson files for basic Linux building
Diffstat (limited to 'src/meson.build')
| -rw-r--r-- | src/meson.build | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/src/meson.build b/src/meson.build new file mode 100644 index 00000000..f416e665 --- /dev/null +++ b/src/meson.build @@ -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) + |
