blob: e0f0027a4a47b242cb50bb572491acd55f8592d8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
message(AUTHOR_WARNING "find_package(${PACKAGE_NAME}) is deprecated.\n${usage}")
include(CMakeFindDependencyMacro)
find_dependency(unofficial-mosquitto CONFIG)
# legacy, ported from wrapper
find_path(MOSQUITTO_INCLUDE_DIR mosquitto.h)
set(MOSQUITTO_INCLUDE_DIRS ${MOSQUITTO_INCLUDE_DIR})
# legacy, both vars included the C++ target
set(MOSQUITTO_LIBRARIES unofficial::mosquitto::mosquittopp)
set(MOSQUITTOPP_LIBRARIES unofficial::mosquitto::mosquittopp)
|