File tree Expand file tree Collapse file tree 3 files changed +4
-3
lines changed
client/lib/include/cc_mqttsn_client
lib/include/cc_mqttsn_gateway Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ extern "C" {
2626
2727/// @brief Patch level of the library
2828/// @ingroup global
29- #define CC_MQTTSN_CLIENT_PATCH_VERSION 2U
29+ #define CC_MQTTSN_CLIENT_PATCH_VERSION 3U
3030
3131/// @brief Macro to create numeric version as single unsigned number
3232#define CC_MQTTSN_CLIENT_MAKE_VERSION (major_ , minor_ , patch_ ) \
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ function (bin_cc_mqttsn_gateway_app)
1717 )
1818
1919 add_executable (${name} ${src} )
20- target_link_libraries (${name} cc::${MQTTSN_GATEWAY_LIB_NAME} Boost::system Boost::program_options ${EXTRA_BOOST_TARGETS} )
20+ target_link_libraries (${name} cc::${MQTTSN_GATEWAY_LIB_NAME} Boost::system Boost::program_options ${EXTRA_BOOST_TARGETS} ${CMAKE_THREAD_LIBS_INIT} )
2121
2222 install (
2323 TARGETS ${name}
@@ -32,6 +32,7 @@ endfunction ()
3232
3333###########################################################
3434
35+ find_package (Threads REQUIRED)
3536find_package (Boost COMPONENTS system program_options)
3637
3738set (EXTRA_BOOST_TARGETS)
Original file line number Diff line number Diff line change 1717#define CC_MQTTSN_GW_MINOR_VERSION 0U
1818
1919/// @brief Patch level of the library
20- #define CC_MQTTSN_GW_PATCH_VERSION 2U
20+ #define CC_MQTTSN_GW_PATCH_VERSION 3U
2121
2222/// @brief Macro to create numeric version as single unsigned number
2323#define CC_MQTTSN_GW_MAKE_VERSION (major_ , minor_ , patch_ ) \
You can’t perform that action at this time.
0 commit comments