Lib prometheus et paho.mqtt

This commit is contained in:
2025-12-07 20:40:40 +01:00
parent 5d6ce300f3
commit 50a3a765d2
2 changed files with 16 additions and 3 deletions

View File

@@ -34,6 +34,7 @@ find_library(NCURSESW_LIB ncursesw REQUIRED)
find_library(RABBITMQ_LIB rabbitmq REQUIRED)
# Paho MQTT C client
find_library(PAHO_MQTTPP3_LIB paho-mqttpp3 REQUIRED)
find_library(PAHO_MQTT3C_LIB paho-mqtt3c REQUIRED)
# -------------------------------
@@ -53,5 +54,6 @@ target_link_libraries(geii_exporter
${Z_LIB}
${NCURSESW_LIB}
${RABBITMQ_LIB}
${PAHO_MQTT3C_LIB}
${PAHO_MQTT3C_LIB} # dépendance C
${PAHO_MQTTPP3_LIB} # lib C++
)