diff options
| author | Michael Vetter <jubalh@openmailbox.org> | 2017-06-08 17:03:25 +0200 |
|---|---|---|
| committer | Michael Vetter <jubalh@openmailbox.org> | 2017-06-08 17:03:25 +0200 |
| commit | 1a61dc2c77dbf28efab8bc32a7485b567ced3d03 (patch) | |
| tree | c6a767ab119cd5030a6b7c4f118183ade1e256d5 | |
| parent | 9dd3c031535f49c18e2e0f6735661e751aa745ea (diff) | |
| download | raylib-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.
| -rw-r--r-- | src/meson.build | 3 |
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') |
