aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMichael Vetter <jubalh@openmailbox.org>2017-06-08 17:03:25 +0200
committerMichael Vetter <jubalh@openmailbox.org>2017-06-08 17:03:25 +0200
commit1a61dc2c77dbf28efab8bc32a7485b567ced3d03 (patch)
treec6a767ab119cd5030a6b7c4f118183ade1e256d5 /src
parent9dd3c031535f49c18e2e0f6735661e751aa745ea (diff)
downloadraylib-1a61dc2c77dbf28efab8bc32a7485b567ced3d03.tar.gz
raylib-1a61dc2c77dbf28efab8bc32a7485b567ced3d03.zip
Meson: build library with so version
This should always be the number of the raylib release. Especially when the new version is ABI incompatible the major version should be bumped.
Diffstat (limited to 'src')
-rw-r--r--src/meson.build3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/meson.build b/src/meson.build
index 1b84e6f3..bdffb98e 100644
--- a/src/meson.build
+++ b/src/meson.build
@@ -17,5 +17,6 @@ source_c = [
raylib = library('raylib',
source_c,
dependencies : [ glfw_dep, gl_dep, openal_dep, m_dep, x11_dep],
- install : true)
+ install : true,
+ version : '1.7.0')