From 6c7838eb2c36d8716bfbadb1dc050caa858c6342 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Esser?= Date: Fri, 10 Apr 2020 12:54:52 +0200 Subject: [PATCH] CMake: Bump SONAME to 5. The soname of libjson-c needs to be bumped as there were API changes introduced since the last release: * lh_abort() has been removed * lh_table_lookup() has been removed * TRUE and FALSE defines have been removed --- CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6b70fa6..bf2e4f2 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -365,8 +365,8 @@ add_library(${PROJECT_NAME} ${JSON_C_HEADERS} ) set_target_properties(${PROJECT_NAME} PROPERTIES - VERSION 4.0.0 - SOVERSION 4) + VERSION 5.0.0 + SOVERSION 5) # If json-c is used as subroject it set to target correct interface -I flags and allow # to build external target without extra include_directories(...)