summaryrefslogtreecommitdiffhomepage
path: root/src/meson.build
diff options
context:
space:
mode:
authorDavid Reid <[email protected]>2018-04-21 17:26:40 +1000
committerDavid Reid <[email protected]>2018-04-21 17:26:40 +1000
commitf5ebbfb6bc80e5d5555e84ee505ff794c2bc64b6 (patch)
tree800aeb61be9c2018d1a048da54d1f6ab746f11f1 /src/meson.build
parent950f31e620a9239dc91230ad92bb243f149e6f2c (diff)
parent847bdaf68287f70fbeb5599361257b6f982e48c5 (diff)
downloadraylib-f5ebbfb6bc80e5d5555e84ee505ff794c2bc64b6.tar.gz
raylib-f5ebbfb6bc80e5d5555e84ee505ff794c2bc64b6.zip
Merge branch 'master' of https://github.com/raysan5/raylib into dr/mini_al
Diffstat (limited to 'src/meson.build')
-rw-r--r--src/meson.build22
1 files changed, 0 insertions, 22 deletions
diff --git a/src/meson.build b/src/meson.build
deleted file mode 100644
index 12385fc9..00000000
--- a/src/meson.build
+++ /dev/null
@@ -1,22 +0,0 @@
-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',
-]
-
-# use 'meson --default-library=static builddir' to build as static, if no builddir yet exists
-# use 'mesonconf -Ddefault_library=static builddir' to change the type
-raylib = library('raylib',
- source_c,
- dependencies : [ glfw_dep, gl_dep, openal_dep, m_dep, x11_dep],
- install : true,
- version : '1.8.0')
-