Skip to content

Commit

Permalink
Fixed missing include path.
Browse files Browse the repository at this point in the history
  • Loading branch information
redboltz committed Nov 14, 2023
1 parent bc91f3a commit dc90578
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion include/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ SET(ROOT_MQTT_TARGET include/mqtt)

ADD_LIBRARY(${PROJECT_NAME} INTERFACE)

TARGET_LINK_LIBRARIES(${PROJECT_NAME} INTERFACE Threads::Threads)
TARGET_LINK_LIBRARIES(${PROJECT_NAME} INTERFACE Threads::Threads Boost::boost)

IF(MQTT_USE_STATIC_OPENSSL)
# Unfortunately, cmake doesn't automatically detect that statically linked openssl
Expand Down
1 change: 1 addition & 0 deletions include/mqtt/broker/topic_filter.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@

#include <algorithm>
#include <limits>
#include <cstdint>

#include <mqtt/broker/broker_namespace.hpp>
#include <mqtt/string_view.hpp>
Expand Down

0 comments on commit dc90578

Please sign in to comment.