Skip to content

Commit

Permalink
Release v0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
arobenko committed Dec 10, 2023
2 parents 4e45fb4 + d3094fd commit 69bae77
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ of features customization may be somewhat limited, but if needed please
It should not take long.

The doxygen generated documentation of the library with its full tutorial can
be downloaded from the [release artefacts](releases) or browsed
be downloaded from the [release artefacts](https://github.com/commschamp/cc.mqtt5.libs/releases) or browsed
[online](https://commschamp.github.io/cc_mqtt5_client_doc).

# Client Applications
Expand Down
1 change: 1 addition & 0 deletions client/app/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ if (NOT CC_MQTT5_CLIENT_DEFAULT_LIB)
return ()
endif ()

find_package (Threads REQUIRED)
find_package (Boost REQUIRED COMPONENTS system program_options)

set (EXTRA_BOOST_TARGETS)
Expand Down
2 changes: 1 addition & 1 deletion client/app/common/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ set (src
)

add_library(${COMMON_APPS_LIB} STATIC ${src})
target_link_libraries(${COMMON_APPS_LIB} PUBLIC cc::cc_mqtt5_client Boost::system Boost::program_options ${EXTRA_BOOST_TARGETS})
target_link_libraries(${COMMON_APPS_LIB} PUBLIC cc::cc_mqtt5_client Boost::system Boost::program_options ${EXTRA_BOOST_TARGETS} ${CMAKE_THREAD_LIBS_INIT})
target_include_directories(
${COMMON_APPS_LIB} BEFORE
PUBLIC
Expand Down
2 changes: 1 addition & 1 deletion client/lib/include/cc_mqtt5_client/common.h
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ extern "C" {

/// @brief Patch level of the library
/// @ingroup global
#define CC_MQTT5_CLIENT_PATCH_VERSION 0U
#define CC_MQTT5_CLIENT_PATCH_VERSION 1U

/// @brief Macro to create numeric version as single unsigned number
/// @ingroup global
Expand Down

0 comments on commit 69bae77

Please sign in to comment.