First implementation

This commit is contained in:
Yury Shuvakin
2024-07-03 19:11:29 +09:00
parent 25a3a8ac11
commit d708fc3499
153 changed files with 17687 additions and 0 deletions

30
cpp/core/core.pri Normal file
View File

@@ -0,0 +1,30 @@
SOURCES += \
$$PWD/Backend.cpp \
$$PWD/CanMessage.cpp \
$$PWD/CanTrace.cpp \
$$PWD/CanDbMessage.cpp \
$$PWD/CanDb.cpp \
$$PWD/CanDbNode.cpp \
$$PWD/CanDbSignal.cpp \
$$PWD/MeasurementSetup.cpp \
$$PWD/MeasurementNetwork.cpp \
$$PWD/MeasurementInterface.cpp \
$$PWD/LogModel.cpp \
$$PWD/ConfigurableWidget.cpp \
$$PWD/Log.cpp
HEADERS += \
$$PWD/portable_endian.h \
$$PWD/Backend.h \
$$PWD/CanMessage.h \
$$PWD/CanTrace.h \
$$PWD/CanDbMessage.h \
$$PWD/CanDb.h \
$$PWD/CanDbNode.h \
$$PWD/CanDbSignal.h \
$$PWD/MeasurementSetup.h \
$$PWD/MeasurementNetwork.h \
$$PWD/MeasurementInterface.h \
$$PWD/LogModel.h \
$$PWD/ConfigurableWidget.h \
$$PWD/Log.h