paho-mqtt-cpp/1.2.0

The open-source client implementations of MQTT and MQTT-SN
Recipe info
2023-05-05

Available packages
Linux
Windows
macOS
macOS Apple Silicon

Install
Add the following line to your conanfile.txt:
[requires]
paho-mqtt-cpp/1.2.0

Using paho-mqtt-cpp

Note

If you are a new Conan user, we recommend reading the how to consume packages tutorial.

If you need additional assistance, please ask a question in the Conan Center Index repository.

Simplest use case consuming this recipe and assuming CMake as your local build tool:

[requires]
paho-mqtt-cpp/1.2.0
[generators]
CMakeDeps
CMakeToolchain
[layout]
cmake_layout
from conan import ConanFile
from conan.tools.cmake import cmake_layout


class ExampleRecipe(ConanFile):
    settings = "os", "compiler", "build_type", "arch"
    generators = "CMakeDeps", "CMakeToolchain"

    def requirements(self):
        self.requires("paho-mqtt-cpp/1.2.0")

    def layout(self):
        cmake_layout(self)

Now, you can run this Conan command to locally install (and build if necessary) this recipe and its dependencies (if any):

$ conan install conanfile.txt --build=missing

Useful information to take into account to consume this library:


These are the main declared targets:

  • CMake package name(s): PahoMqttCpp
  • CMake target name(s): PahoMqttCpp::paho-mqttpp3-static
  • paho-mqttpp => PahoMqttCpp::paho-mqttpp3-static
    
  • pkg-config file name(s): paho-mqtt-cpp.pc
  • paho-mqttpp => paho-mqtt-cpp-paho-mqttpp.pc
    

A simple use case using the CMake file name and the global target:

# ...
find_package(PahoMqttCpp REQUIRED)
# ...
target_link_libraries(YOUR_TARGET PahoMqttCpp::paho-mqttpp3-static)

These are all the available headers. Some of these ones might be non-public; make sure of it by visiting the paho-mqtt-cpp homepage listed above:

#include "mqtt/async_client.h"
#include "mqtt/buffer_ref.h"
#include "mqtt/buffer_view.h"
#include "mqtt/callback.h"
#include "mqtt/client.h"
#include "mqtt/connect_options.h"
#include "mqtt/create_options.h"
#include "mqtt/delivery_token.h"
#include "mqtt/disconnect_options.h"
#include "mqtt/exception.h"
#include "mqtt/iaction_listener.h"
#include "mqtt/iasync_client.h"
#include "mqtt/iclient_persistence.h"
#include "mqtt/message.h"
#include "mqtt/properties.h"
#include "mqtt/response_options.h"
#include "mqtt/server_response.h"
#include "mqtt/ssl_options.h"
#include "mqtt/string_collection.h"
#include "mqtt/subscribe_options.h"
#include "mqtt/thread_queue.h"
#include "mqtt/token.h"
#include "mqtt/topic.h"
#include "mqtt/types.h"
#include "mqtt/will_options.h"