1
0
mirror of synced 2025-07-22 03:21:50 +03:00

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

View File

@ -172,6 +172,11 @@ if(HTTPLIB_COMPILE)
$<BUILD_INTERFACE:${_httplib_build_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()
# This is for header-only.
set(_INTERFACE_OR_PUBLIC INTERFACE)