Skip to content

Commit

Permalink
SAIL: Use the same SO version for all the SAIL libraries
Browse files Browse the repository at this point in the history
  • Loading branch information
HappySeaFox committed Oct 25, 2023
1 parent f4f345b commit 7934753
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions src/bindings/c++/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -90,8 +90,8 @@ set(PUBLIC_HEADERS abstract_io-c++.h
variant-c++.h)

set_target_properties(sail-c++ PROPERTIES
VERSION "0.7.1"
SOVERSION 0
VERSION ${PROJECT_VERSION}
SOVERSION ${PROJECT_VERSION_MAJOR}
PUBLIC_HEADER "${PUBLIC_HEADERS}")

sail_enable_asan(TARGET sail-c++)
Expand Down
4 changes: 2 additions & 2 deletions src/libsail-common/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -91,8 +91,8 @@ set(PUBLIC_HEADERS common.h
variant_node.h)

set_target_properties(sail-common PROPERTIES
VERSION "0.9.2"
SOVERSION 0
VERSION ${PROJECT_VERSION}
SOVERSION ${PROJECT_VERSION_MAJOR}
PUBLIC_HEADER "${PUBLIC_HEADERS}")

sail_enable_asan(TARGET sail-common)
Expand Down
4 changes: 2 additions & 2 deletions src/libsail-manip/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ set(PUBLIC_HEADERS conversion_options.h
sail-manip.h)

set_target_properties(sail-manip PROPERTIES
VERSION "0.3.0"
SOVERSION 0
VERSION ${PROJECT_VERSION}
SOVERSION ${PROJECT_VERSION_MAJOR}
PUBLIC_HEADER "${PUBLIC_HEADERS}")

sail_enable_asan(TARGET sail-manip)
Expand Down
4 changes: 2 additions & 2 deletions src/libsail/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,8 @@ set(PUBLIC_HEADERS codec_bundle.h
sail_technical_diver.h)

set_target_properties(sail PROPERTIES
VERSION "0.8.0"
SOVERSION 0
VERSION ${PROJECT_VERSION}
SOVERSION ${PROJECT_VERSION_MAJOR}
PUBLIC_HEADER "${PUBLIC_HEADERS}")

sail_enable_asan(TARGET sail)
Expand Down

0 comments on commit 7934753

Please sign in to comment.