Skip to content

Commit

Permalink
Release v5.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
arobenko committed Oct 18, 2022
2 parents 816a47a + 8d0d75b commit 56cf390
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion lib/include/commsdsl/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
#define COMMSDSL_MINOR_VERSION 1U

/// @brief Patch level of the library
#define COMMSDSL_PATCH_VERSION 0U
#define COMMSDSL_PATCH_VERSION 1U

/// @brief Macro to create numeric version as single unsigned number
#define COMMSDSL_MAKE_VERSION(major_, minor_, patch_) \
Expand Down
2 changes: 1 addition & 1 deletion lib/src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ if (COMMSDSL_INSTALL_LIBRARY_HEADERS)
install(
EXPORT LibCommsdslTargets
DESTINATION ${CMAKE_INSTALL_LIBDIR}/LibCommsdsl/cmake/
NAMESPACE commsdsl::
NAMESPACE cc::
)

include(CMakePackageConfigHelpers)
Expand Down
6 changes: 3 additions & 3 deletions lib/src/LibCommsdslConfig.cmake.in
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
get_filename_component(LIBCOMMSDSL_CMAKE_DIR "${CMAKE_CURRENT_LIST_FILE}" PATH)
include("${LIBCOMMSDSL_CMAKE_DIR}/LibCommsdslTargets.cmake")
if (TARGET commsdsl::commsdsl)
if (TARGET cc::commsdsl)
set (LIBCOMMSDSL_FOUND TRUE)
get_target_property (LIBCOMMSDSL_INCLUDE_DIRS commsdsl::commsdsl INTERFACE_INCLUDE_DIRECTORIES)
get_target_property (LIBCOMMSDSL_LIBRARIES commsdsl::commsdsl IMPORTED_LOCATION_NOCONFIG)
get_target_property (LIBCOMMSDSL_INCLUDE_DIRS cc::commsdsl INTERFACE_INCLUDE_DIRECTORIES)
get_target_property (LIBCOMMSDSL_LIBRARIES cc::commsdsl IMPORTED_LOCATION_NOCONFIG)
endif ()


0 comments on commit 56cf390

Please sign in to comment.