Skip to content

Commit

Permalink
macOS: add option to mimic 1.0.0 compatibility version
Browse files Browse the repository at this point in the history
As it used to be with autotools.

Fixes: #622
  • Loading branch information
Youw committed Nov 20, 2024
1 parent ff67c77 commit e168aae
Showing 1 changed file with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion mac/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,27 @@ set_target_properties(hidapi_darwin
OUTPUT_NAME "hidapi"
VERSION ${PROJECT_VERSION}
SOVERSION ${PROJECT_VERSION_MAJOR}
MACHO_COMPATIBILITY_VERSION ${PROJECT_VERSION_MAJOR}
FRAMEWORK_VERSION ${PROJECT_VERSION_MAJOR}
PUBLIC_HEADER "${HIDAPI_PUBLIC_HEADERS}"
)

if(NOT CMAKE_VERSION VERSION_LESS 3.17)
option(HIDAPI_USE_LEGACY_COMPATIBILITY_VERSION "Legacy Autotools build system hard-coded 1.0.0 for compatibility version" FALSE)
if(HIDAPI_USE_LEGACY_COMPATIBILITY_VERSION)
# TODO: v1: remove this workaround
set_target_properties(hidapi_darwin
PROPERTIES
MACHO_COMPATIBILITY_VERSION "1.0.0"
MACHO_CURRENT_VERSION "1.0.0"
)
else()
set_target_properties(hidapi_darwin
PROPERTIES
MACHO_COMPATIBILITY_VERSION ${PROJECT_VERSION_MAJOR}
)
endif()
endif()

# compatibility with find_package()
add_library(hidapi::darwin ALIAS hidapi_darwin)
# compatibility with raw library link
Expand Down

0 comments on commit e168aae

Please sign in to comment.