mirror of
https://github.com/eclipse/paho.mqtt.cpp.git
synced 2025-05-09 11:21:24 +08:00
28 lines
823 B
CMake
28 lines
823 B
CMake
# save build-time options
|
|
set(PAHO_BUILD_STATIC @PAHO_BUILD_STATIC@)
|
|
set(PAHO_BUILD_SHARED @PAHO_BUILD_SHARED@)
|
|
set(PAHO_WITH_SSL @PAHO_WITH_SSL@)
|
|
set(PAHO_WITH_MQTT_C @PAHO_WITH_MQTT_C@)
|
|
|
|
include(CMakeFindDependencyMacro)
|
|
|
|
find_dependency(Threads REQUIRED)
|
|
|
|
if (NOT PAHO_WITH_MQTT_C)
|
|
find_dependency(eclipse-paho-mqtt-c REQUIRED)
|
|
endif()
|
|
|
|
if (PAHO_WITH_SSL)
|
|
find_dependency(OpenSSL REQUIRED)
|
|
endif()
|
|
|
|
if(NOT TARGET PahoMqttCpp::paho-mqttpp3-shared AND NOT TARGET PahoMqttCpp::paho-mqttpp3-static)
|
|
include("${CMAKE_CURRENT_LIST_DIR}/@package_name@Targets.cmake")
|
|
|
|
if(TARGET PahoMqttCpp::paho-mqttpp3-shared)
|
|
add_library(PahoMqttCpp::paho-mqttpp3 ALIAS PahoMqttCpp::paho-mqttpp3-shared)
|
|
else()
|
|
add_library(PahoMqttCpp::paho-mqttpp3 ALIAS PahoMqttCpp::paho-mqttpp3-static)
|
|
endif()
|
|
endif()
|