diff --git a/CMakeLists.txt b/CMakeLists.txt index d7d8f48..a8b73a4 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -176,7 +176,7 @@ if(HTTPLIB_COMPILE) set_target_properties(${PROJECT_NAME} PROPERTIES VERSION ${${PROJECT_NAME}_VERSION} - SOVERSION ${${PROJECT_NAME}_VERSION_MAJOR} + SOVERSION "${${PROJECT_NAME}_VERSION_MAJOR}.${${PROJECT_NAME}_VERSION_MINOR}" ) else() # This is for header-only. @@ -247,13 +247,13 @@ if(HTTPLIB_COMPILE) write_basic_package_version_file("${PROJECT_NAME}ConfigVersion.cmake" # Example: if you find_package(httplib 0.5.4) # then anything >= 0.5 and <= 1.0 is accepted - COMPATIBILITY SameMajorVersion + COMPATIBILITY SameMinorVersion ) else() write_basic_package_version_file("${PROJECT_NAME}ConfigVersion.cmake" # Example: if you find_package(httplib 0.5.4) # then anything >= 0.5 and <= 1.0 is accepted - COMPATIBILITY SameMajorVersion + COMPATIBILITY SameMinorVersion # Tells Cmake that it's a header-only lib # Mildly useful for end-users :) ARCH_INDEPENDENT diff --git a/meson.build b/meson.build index 88d75bb..c879e25 100644 --- a/meson.build +++ b/meson.build @@ -77,6 +77,7 @@ if get_option('cpp-httplib_compile') dependencies: deps, cpp_args: args, version: version, + soversion: version.split('.')[0] + '.' + version.split('.')[1], install: true ) cpp_httplib_dep = declare_dependency(compile_args: args, dependencies: deps, link_with: lib, sources: httplib_ch[1])