We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f0cc92d commit 1476f22Copy full SHA for 1476f22
CHANGELOG.md
@@ -4,6 +4,7 @@
4
- **Breaking**: Aligned types with the latest specification updates:
5
- `integer` changed to unsigned (`uint32_t`)
6
- `float` changed to `double`
7
+- Specify the build version and ABI version
8
9
## [0.5.0](https://github.com/rdkcentral/firebolt-cpp-client/compare/v0.4.0...v0.5.0)
10
src/CMakeLists.txt
@@ -70,7 +70,9 @@ target_include_directories(${TARGET}
70
set_target_properties(${TARGET} PROPERTIES
71
CXX_STANDARD 17
72
CXX_STANDARD_REQUIRED YES
73
- CMAKE_POSITION_INDEPENDENT_CODE ON
+ VERSION ${PROJECT_VERSION}
74
+ SOVERSION ${PROJECT_VERSION_MAJOR}
75
+ POSITION_INDEPENDENT_CODE ON
76
)
77
78
write_basic_package_version_file(
0 commit comments