Add soversion (#1209)

This commit is contained in:
Alexandre Bouvier 2022-03-04 03:06:08 +01:00 committed by GitHub
parent f7b9501662
commit e44e31dd5b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 0 deletions

View File

@ -172,6 +172,11 @@ if(HTTPLIB_COMPILE)
$<BUILD_INTERFACE:${_httplib_build_includedir}/httplib.h> $<BUILD_INTERFACE:${_httplib_build_includedir}/httplib.h>
$<INSTALL_INTERFACE:${CMAKE_INSTALL_INCLUDEDIR}/httplib.h> $<INSTALL_INTERFACE:${CMAKE_INSTALL_INCLUDEDIR}/httplib.h>
) )
set_target_properties(${PROJECT_NAME}
PROPERTIES
VERSION ${${PROJECT_NAME}_VERSION}
SOVERSION ${${PROJECT_NAME}_VERSION_MAJOR}
)
else() else()
# This is for header-only. # This is for header-only.
set(_INTERFACE_OR_PUBLIC INTERFACE) set(_INTERFACE_OR_PUBLIC INTERFACE)