Skip to content

Commit fb33e31

Browse files
committed
mqtt: version 0.1.0
1 parent 937f527 commit fb33e31

3 files changed

Lines changed: 3 additions & 2 deletions

File tree

CMakeLists.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,8 @@ if(OPENDAQ_MQTT_MODULE_ENABLE_SSL)
6161
add_compile_definitions(OPENDAQ_MQTT_MODULE_ENABLE_SSL)
6262
endif()
6363

64+
set(MQTT_MODULE_VERSION "0.1.0" CACHE STRING "MQTT module version" FORCE)
65+
6466
add_subdirectory(external)
6567
add_subdirectory(helper_utils)
6668
add_subdirectory(mqtt_streaming_protocol)

mqtt_streaming_module/CMakeLists.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
cmake_minimum_required(VERSION 3.10)
22
set_cmake_folder_context(TARGET_FOLDER_NAME)
33

4-
set(MQTT_MODULE_VERSION ${OPENDAQ_PACKAGE_VERSION})
54
set(MQTT_MODULE_PRJ_NAME "OpenDaqMqttModule")
65

76
message(STATUS "${MQTT_MODULE_PRJ_NAME} version: ${MQTT_MODULE_VERSION}")

mqtt_streaming_protocol/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
cmake_minimum_required(VERSION 3.10)
22
set_cmake_folder_context(TARGET_FOLDER_NAME)
33

4-
set(MQTT_STREAMING_PROTOCOL_VERSION ${OPENDAQ_PACKAGE_VERSION})
4+
set(MQTT_STREAMING_PROTOCOL_VERSION ${MQTT_MODULE_VERSION})
55
set(MQTT_STREAMING_PROTOCOL_PRJ_NAME "OpenDaqMqttStreamingProtocol")
66

77
message(STATUS "${MQTT_STREAMING_PROTOCOL_PRJ_NAME} version: ${MQTT_STREAMING_PROTOCOL_VERSION}")

0 commit comments

Comments
 (0)