Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adding MQTTv5 Properties (Publish) #2613

Merged
merged 5 commits into from
Jul 27, 2023
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -76,11 +76,11 @@ endif()

# Determine MQTT transport to build
if(AZ_MQTT_TRANSPORT_IMPL STREQUAL "PAHO")
set(MQTT_TRANSPORT az_mqtt_paho)
set(MQTT_TRANSPORT az_mqtt5_paho)
set(TRANSPORT_PAHO ON)
add_compile_definitions(TRANSPORT_PAHO)
elseif(AZ_MQTT_TRANSPORT_IMPL STREQUAL "MOSQUITTO")
set(MQTT_TRANSPORT az_mqtt_mosquitto)
set(MQTT_TRANSPORT az_mqtt5_mosquitto)
set(TRANSPORT_MOSQUITTO ON)
add_compile_definitions(TRANSPORT_MOSQUITTO)
elseif(AZ_MQTT_TRANSPORT_IMPL STREQUAL "CUSTOM")
Expand All @@ -91,7 +91,7 @@ elseif(AZ_MQTT_TRANSPORT_IMPL STREQUAL "CUSTOM")
add_compile_definitions(TRANSPORT_${AZ_CUSTOM_MQTT_TRANSPORT_IMPL})
else()
#notransport
set(MQTT_TRANSPORT az_mqtt_notransport)
set(MQTT_TRANSPORT az_mqtt5_notransport)
endif()

add_subdirectory(sdk/src/azure/core)
Expand Down
Loading