Updated versions.

This commit is contained in:
Takatoshi Kondo 2014-07-12 00:33:06 +09:00
parent cc571b8bb1
commit aa79fc2ff4
3 changed files with 6 additions and 6 deletions

View File

@ -1,9 +1,9 @@
CMAKE_MINIMUM_REQUIRED (VERSION 2.8.6) CMAKE_MINIMUM_REQUIRED (VERSION 2.8.6)
PROJECT (msgpack) PROJECT (msgpack)
SET (VERSION 0.5.9) SET (VERSION 0.6.0)
SET (VERSION_MAJOR 0) SET (VERSION_MAJOR 0)
SET (VERSION_MINOR 5) SET (VERSION_MINOR 6)
SET (prefix ${CMAKE_INSTALL_PREFIX}) SET (prefix ${CMAKE_INSTALL_PREFIX})
SET (exec_prefix "\${prefix}") SET (exec_prefix "\${prefix}")
@ -141,7 +141,7 @@ ADD_LIBRARY (msgpack-static STATIC
SET_TARGET_PROPERTIES (msgpack-static PROPERTIES OUTPUT_NAME "msgpack") SET_TARGET_PROPERTIES (msgpack-static PROPERTIES OUTPUT_NAME "msgpack")
SET_TARGET_PROPERTIES (msgpack PROPERTIES IMPORT_SUFFIX "_import.lib") SET_TARGET_PROPERTIES (msgpack PROPERTIES IMPORT_SUFFIX "_import.lib")
SET_TARGET_PROPERTIES (msgpack PROPERTIES SOVERSION 3 VERSION 3.0.0) SET_TARGET_PROPERTIES (msgpack PROPERTIES SOVERSION 3 VERSION 4.0.0)
IF (MSGPACK_BUILD_TESTS) IF (MSGPACK_BUILD_TESTS)
ENABLE_TESTING () ENABLE_TESTING ()

View File

@ -1,3 +1,3 @@
#define MSGPACK_VERSION_MAJOR 0 #define MSGPACK_VERSION_MAJOR 0
#define MSGPACK_VERSION_MINOR 5 #define MSGPACK_VERSION_MINOR 6
#define MSGPACK_VERSION_RELEASE 9 #define MSGPACK_VERSION_RELEASE 0

View File

@ -16,7 +16,7 @@ endif
# -version-info CURRENT:REVISION:AGE # -version-info CURRENT:REVISION:AGE
libmsgpack_la_LDFLAGS = -version-info 3:0:0 -no-undefined libmsgpack_la_LDFLAGS = -version-info 4:0:0 -no-undefined
# backward compatibility # backward compatibility