File tree 3 files changed +4
-3
lines changed
3 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -123,10 +123,10 @@ FIND_PACKAGE (Threads REQUIRED)
123
123
SET (MQTT_BOOST_COMPONENTS)
124
124
IF (MQTT_USE_LOG)
125
125
MESSAGE (STATUS "Logging enabled" )
126
- SET (MQTT_BOOST_COMPONENTS system date_time log filesystem thread program_options)
126
+ SET (MQTT_BOOST_COMPONENTS log filesystem thread program_options)
127
127
ELSE ()
128
128
MESSAGE (STATUS "Logging disabled" )
129
- SET (MQTT_BOOST_COMPONENTS system date_time program_options)
129
+ SET (MQTT_BOOST_COMPONENTS program_options)
130
130
ENDIF ()
131
131
FIND_PACKAGE (Boost 1.74.0 REQUIRED COMPONENTS ${MQTT_BOOST_COMPONENTS} )
132
132
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ SET(ROOT_MQTT_TARGET include/mqtt)
6
6
7
7
ADD_LIBRARY (${PROJECT_NAME} INTERFACE )
8
8
9
- TARGET_LINK_LIBRARIES (${PROJECT_NAME} INTERFACE Threads::Threads Boost::system Boost::date_time )
9
+ TARGET_LINK_LIBRARIES (${PROJECT_NAME} INTERFACE Threads::Threads Boost::boost )
10
10
11
11
IF (MQTT_USE_STATIC_OPENSSL)
12
12
# Unfortunately, cmake doesn't automatically detect that statically linked openssl
Original file line number Diff line number Diff line change 9
9
10
10
#include < algorithm>
11
11
#include < limits>
12
+ #include < cstdint>
12
13
13
14
#include < mqtt/broker/broker_namespace.hpp>
14
15
#include < mqtt/string_view.hpp>
You can’t perform that action at this time.
0 commit comments