Skip to content

Commit

Permalink
Correct order of attributes in SO_NAME
Browse files Browse the repository at this point in the history
  • Loading branch information
mikeb01 committed Apr 14, 2024
1 parent c818722 commit e33c19c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions CMakeLists.txt
Expand Up @@ -27,10 +27,10 @@ include(CMakePackageConfigHelpers)
# 4. If any interfaces have been removed since the last public release, then set age to 0.

set(HDR_SOVERSION_CURRENT 6)
set(HDR_SOVERSION_AGE 1)
set(HDR_SOVERSION_REVISION 3)
set(HDR_SOVERSION_REVISION 1)
set(HDR_SOVERSION_AGE 3)

set(HDR_VERSION ${HDR_SOVERSION_CURRENT}.${HDR_SOVERSION_AGE}.${HDR_SOVERSION_REVISION})
set(HDR_VERSION ${HDR_SOVERSION_CURRENT}.${HDR_SOVERSION_REVISION}.${HDR_SOVERSION_AGE})
set(HDR_SOVERSION ${HDR_SOVERSION_CURRENT})
option(HDR_LOG_REQUIRED "HDR Logging component required" ON)

Expand Down

0 comments on commit e33c19c

Please sign in to comment.