问题
My goal
... is to use the sample code async_subscribe.cpp
from the PahoMqttCpp project (https://github.com/eclipse/paho.mqtt.cpp) as a standalone application to then modify it for my needs.
My approach
Preliminaries
On the newest model of Raspberry pi (uname -a
--> 4.14.98-v7+ #1200 SMP Tue Feb 12 20:27:48 GMT 2019 armv7l GNU/Linux
) I have followed the description in the PahoMqttCpp README.md file. I compiled successfully the C-library (v1.2.1) and then compiled successfuly the Cpp part, finally installed both libraries to /usr/local/lib
. During this process, no errors occurred.
My project
Then, as a start for my own project, I copied the async_subscribe.cpp
from the PahoMqttCpp samples into a empty directory and started to build a CMakeLists.txt
to compile it. Naively, I started with this version:
cmake_minimum_required(VERSION 3.5)
add_library(PahoMqttC SHARED IMPORTED)
set_target_properties(PahoMqttC PROPERTIES IMPORTED_LOCATION /usr/share/lib/libpaho-mqtt3a.so)
set(THREADS_PREFER_PTHREAD_FLAG ON)
find_package(Threads REQUIRED)
find_package(PahoMqttCpp REQUIRED)
add_executable(async_subscribe async_subscribe.cpp)
include_directories(${PahoMqttCpp_INCLUDE_DIRS})
target_link_libraries(async_subscribe ${PahoMqttCpp_LIBRARIES})
target_link_libraries(async_subscribe ${PahoMqttC_LIBRARIES})
install(TARGETS async_subscribe RUNTIME DESTINATION bin)
The following cmake -Bbuild -H.
command showed no errors, the output was
pi@homepi:~/Develop/CppMosquitto/example $ cmake -Bbuild -H.
-- The C compiler identification is GNU 6.3.0
-- The CXX compiler identification is GNU 6.3.0
-- Check for working C compiler: /usr/bin/cc
-- Check for working C compiler: /usr/bin/cc -- works
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Detecting C compile features
-- Detecting C compile features - done
-- Check for working CXX compiler: /usr/bin/c++
-- Check for working CXX compiler: /usr/bin/c++ -- works
-- Detecting CXX compiler ABI info
-- Detecting CXX compiler ABI info - done
-- Detecting CXX compile features
-- Detecting CXX compile features - done
-- Looking for pthread.h
-- Looking for pthread.h - found
-- Looking for pthread_create
-- Looking for pthread_create - not found
-- Check if compiler accepts -pthread
-- Check if compiler accepts -pthread - yes
-- Found Threads: TRUE
-- Found PahoMqttC: /usr/local/lib/libpaho-mqtt3a.so
-- Configuring done
-- Generating done
-- Build files have been written to: /home/pi/Develop/CppMosquitto/example/build
The following cmake --build build/
command instead showed no compile errors, but a lot of linker errors
[ 50%] Linking CXX executable async_subscribe
CMakeFiles/async_subscribe.dir/async_subscribe.cpp.o: In function `main':
async_subscribe.cpp:(.text+0x154): undefined reference to `mqtt::connect_options::connect_options()'
async_subscribe.cpp:(.text+0x188): undefined reference to `mqtt::async_client::async_client(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, mqtt::iclient_persistence*)'
async_subscribe.cpp:(.text+0x1b0): undefined reference to `mqtt::async_client::set_callback(mqtt::callback&)'
async_subscribe.cpp:(.text+0x1e0): undefined reference to `mqtt::connect_options::connect_options(mqtt::connect_options const&)'
async_subscribe.cpp:(.text+0x200): undefined reference to `mqtt::async_client::connect(mqtt::connect_options, void*, mqtt::iaction_listener&)'
async_subscribe.cpp:(.text+0x2e4): undefined reference to `mqtt::async_client::~async_client()'
async_subscribe.cpp:(.text+0x43c): undefined reference to `mqtt::async_client::~async_client()'
CMakeFiles/async_subscribe.dir/async_subscribe.cpp.o: In function `mqtt::async_client::disconnect()':
async_subscribe.cpp:(.text._ZN4mqtt12async_client10disconnectEv[_ZN4mqtt12async_client10disconnectEv]+0x2c): undefined reference to `mqtt::disconnect_options::disconnect_options()'
CMakeFiles/async_subscribe.dir/async_subscribe.cpp.o: In function `callback::reconnect()':
async_subscribe.cpp:(.text._ZN8callback9reconnectEv[_ZN8callback9reconnectEv]+0x68): undefined reference to `mqtt::connect_options::connect_options(mqtt::connect_options const&)'
collect2: error: ld returned 1 exit status
CMakeFiles/async_subscribe.dir/build.make:94: die Regel für Ziel „async_subscribe“ scheiterte
make[2]: *** [async_subscribe] Fehler 1
CMakeFiles/Makefile2:67: die Regel für Ziel „CMakeFiles/async_subscribe.dir/all“ scheiterte
make[1]: *** [CMakeFiles/async_subscribe.dir/all] Fehler 2
Makefile:127: die Regel für Ziel „all“ scheiterte
make: *** [all] Fehler 2
From the PahoMqttCpp documentation, I learned that the Cpp library needs the PahoMqttC library. In the CMakeLists.txt files from the PahoMqttCpp library, there the C-part is included by a line find_package(PahoMqttC REQUIRED)
(https://github.com/eclipse/paho.mqtt.cpp/blob/master/src/CMakeLists.txt line 26). But this produces also errors for me in the first cmake command.
CMake Error at CMakeLists.txt:6 (find_package):
By not providing "FindPahoMqttC.cmake" in CMAKE_MODULE_PATH this project
has asked CMake to find a package configuration file provided by
"PahoMqttC", but CMake did not find one.
Could not find a package configuration file provided by "PahoMqttC" with
any of the following names:
PahoMqttCConfig.cmake
pahomqttc-config.cmake
Add the installation prefix of "PahoMqttC" to CMAKE_PREFIX_PATH or set
"PahoMqttC_DIR" to a directory containing one of the above files. If
"PahoMqttC" provides a separate development package or SDK, be sure it has
been installed.
Adding a line
set(CMAKE_MODULE_PATH /usr/local/lib/cmake/PahoMqttCpp)
to the CMakeLists.txt file avoids the error in the first cmake command, but the make commnad in the build directory fails with the same undefined references.
What am I missing? I have not used cmake in very complex projects, but I thought I understood the basic way to set up a simple project ...until now. I'd appreciate very much a tip from a cmake expert!!
Edit after trying out first answer's approach
Unfortunately, I am still getting errors:
pi@homepi:~/Develop/CppMosquitto/example $ cmake -Bbuild -H.
-- Looking for pthread.h
-- Looking for pthread.h - found
-- Looking for pthread_create
-- Looking for pthread_create - not found
-- Check if compiler accepts -pthread
-- Check if compiler accepts -pthread - yes
-- Found Threads: TRUE
-- Configuring done
CMake Error at CMakeLists.txt:10 (add_executable):
Target "async_subscribe" links to target "PahoMqttCpp::PahoMqttCpp" but the
target was not found. Perhaps a find_package() call is missing for an
IMPORTED target, or an ALIAS target is missing?
-- Generating done
-- Build files have been written to: /home/pi/Develop/CppMosquitto/example/build
Update
This is my current CMakeLists.txt
file
cmake_minimum_required(VERSION 3.5)
find_package(PahoMqttCpp REQUIRED)
add_executable(async_subscribe async_subscribe.cpp)
target_link_libraries(async_subscribe PahoMqttCpp::PahoMqttCpp)
install(TARGETS async_subscribe RUNTIME DESTINATION bin)
that produces still the error above and I don't know how to fix it.
回答1:
Script PahoMqttCppConfig.cmake does NOT provide variables like PahoMqttCpp_LIBRARIES
or PahoMqttCpp_INCLUDE_DIRS
.
Instead, it provides IMPORTED target PahoMqttCpp::PahoMqttCpp
which represents PahoMqttCpp library. Using this target is simple:
# This provides both include directories and linked libraries
target_link_libraries(async_subscribe PahoMqttCpp::PahoMqttCpp)
By analogy, imported target PahoMqttC::PahoMqttC
is provided for pure C code. This library is linked automatically when one links with C++ one PahoMqttCpp::PahoMqttCpp
.
来源:https://stackoverflow.com/questions/55799122/compile-pahomqttcpp-sample-as-standalone-with-cmake-on-linux