Skip to content

Commit 40604c3

Browse files
committed
Set SOVERSION to 4 for CMake builds
In aa79fc2, the SOVERSION was bumped to 4 for autoconf-based builds, but was left at 3 for CMake builds. This shouldn't differ based on which tool is used to build msgpack-c. Signed-off-by: James McCoy <[email protected]>
1 parent e183efc commit 40604c3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -264,7 +264,7 @@ ADD_LIBRARY (msgpack-static STATIC
264264
SET_TARGET_PROPERTIES (msgpack-static PROPERTIES OUTPUT_NAME "msgpack")
265265
IF (MSGPACK_ENABLE_SHARED)
266266
SET_TARGET_PROPERTIES (msgpack PROPERTIES IMPORT_SUFFIX "_import.lib")
267-
SET_TARGET_PROPERTIES (msgpack PROPERTIES SOVERSION 3 VERSION 4.0.0)
267+
SET_TARGET_PROPERTIES (msgpack PROPERTIES SOVERSION 4 VERSION 4.0.0)
268268
ENDIF ()
269269

270270
IF (MSGPACK_BUILD_TESTS)

0 commit comments

Comments
 (0)