Index: lib/Comms/CMakeLists.txt =================================================================== diff -u -r4dccc470aedf6f68a0ad73c1101f8a96188cbdb1 -r59b4c22f45a1d098064a886452769204e90cfb4b --- lib/Comms/CMakeLists.txt (.../CMakeLists.txt) (revision 4dccc470aedf6f68a0ad73c1101f8a96188cbdb1) +++ lib/Comms/CMakeLists.txt (.../CMakeLists.txt) (revision 59b4c22f45a1d098064a886452769204e90cfb4b) @@ -7,7 +7,6 @@ find_package(QT NAMES Qt6 Qt5 REQUIRED COMPONENTS Core) find_package(Qt${QT_VERSION_MAJOR} REQUIRED COMPONENTS Core Network SerialBus) -find_package(SQLite3 REQUIRED) set(INCLUDES include/CanInterface.h @@ -21,7 +20,10 @@ include/main.h include/MessageBuilder.h include/MessageDispatcher.h - include/MessageSpool.h + include/MqttMessage.h + include/MqttPublisher.h + include/MqttTcpTransport.h + include/MqttTransport.h include/types.h ) @@ -35,7 +37,9 @@ src/FrameInterface.cpp src/MessageBuilder.cpp src/MessageDispatcher.cpp - src/MessageSpool.cpp + src/MqttMessage.cpp + src/MqttPublisher.cpp + src/MqttTcpTransport.cpp src/types.cpp ) @@ -57,7 +61,6 @@ Qt${QT_VERSION_MAJOR}::Core Qt${QT_VERSION_MAJOR}::Network Qt${QT_VERSION_MAJOR}::SerialBus - SQLite::SQLite3 ) target_include_directories(${PROJECT_NAME} PUBLIC $)