From 1a61dc2c77dbf28efab8bc32a7485b567ced3d03 Mon Sep 17 00:00:00 2001 From: Michael Vetter Date: Thu, 8 Jun 2017 17:03:25 +0200 Subject: [PATCH] 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. --- src/meson.build | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/meson.build b/src/meson.build index 1b84e6f37ef5..bdffb98ecf41 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')