We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 487b357 commit 6061375Copy full SHA for 6061375
1 file changed
CMakeLists.txt
@@ -5,7 +5,7 @@
5
#*******************************************************************************
6
# This is part of the Paho MQTT C++ client library.
7
#
8
-# Copyright (c) 2017-2025, Frank Pagliughi
+# Copyright (c) 2017-2026, Frank Pagliughi
9
# Copyright (c) 2016-2017, Guilherme Maciel Ferreira
10
11
# All rights reserved. This program and the accompanying materials
@@ -102,7 +102,10 @@ if(PAHO_WITH_MQTT_C)
102
RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR}
103
)
104
else()
105
- find_package(eclipse-paho-mqtt-c REQUIRED)
+ find_package(eclipse-paho-mqtt-c 1.3.14 REQUIRED)
106
+ if(eclipse-paho-mqtt-c_FOUND)
107
+ message(STATUS "Found Paho C v${eclipse-paho-mqtt-c_VERSION}")
108
+ endif()
109
endif()
110
111
# --- System Details ---
0 commit comments