Index: denali.pro =================================================================== diff -u -ra51b1ec80d65c7cf9f7f3b86f45a637a6d42efc1 -r0470ff6f209ff0c5089f8f0849b6da04f60f8f41 --- denali.pro (.../denali.pro) (revision a51b1ec80d65c7cf9f7f3b86f45a637a6d42efc1) +++ denali.pro (.../denali.pro) (revision 0470ff6f209ff0c5089f8f0849b6da04f60f8f41) @@ -1,4 +1,4 @@ -QT += widgets qml quick serialbus concurrent +QT += widgets qml quick serialbus concurrent bluetooth CONFIG += c++17 warn_on QMAKE_CXXFLAGS += -Wall -Werror -Wimplicit-fallthrough # -save-temps # see .ii and .s files @@ -33,6 +33,7 @@ sources/storage \ sources/gui \ sources/canbus \ + sources/bluetooth \ sources/utility \ sources/abstract \ sources/model \ @@ -52,6 +53,7 @@ common/HDDefs.h \ common/MsgDefs.h \ \ # Main + sources/bluetooth/BLEScanner.h \ sources/VTreatmentBegin.h \ sources/main.h \ sources/model/MEndTreatmentResponse.h \ @@ -112,11 +114,14 @@ sources/canbus/messagebuilder.h \ sources/canbus/messageinterpreter.h \ sources/canbus/messagedispatcher.h \ + \ # Bluetooth \ # Gui sources/gui/guiglobals.h \ sources/gui/guiview.h \ sources/gui/guicontroller.h \ \ # ---------- Views ---------- + sources/view/VBluetooth.h \ + sources/view/VBluetoothDeviceInfo.h \ sources/view/VTreatmentCreate.h \ sources/view/VEventSpy.h \ sources/view/hd/data/VHDTreatmentStatesData.h \ @@ -168,6 +173,7 @@ \ # common \ # Main main.cpp \ + sources/bluetooth/BLEScanner.cpp \ sources/VTreatmentBegin.cpp \ sources/model/MEndTreatmentResponse.cpp \ sources/model/MStartTreatmentResponse.cpp \ @@ -224,11 +230,14 @@ sources/canbus/messagebuilder.cpp \ sources/canbus/messagedispatcher.cpp \ sources/canbus/messageinterpreter.cpp \ + \ # Bluetooth \ # Gui sources/gui/guiglobals.cpp \ sources/gui/guiview.cpp \ sources/gui/guicontroller.cpp \ \ # ---------- Views ---------- + sources/view/VBluetooth.cpp \ + sources/view/VBluetoothDeviceInfo.cpp \ sources/view/VTreatmentCreate.cpp \ sources/view/VEventSpy.cpp \ sources/view/hd/data/VHDTreatmentStatesData.cpp \