Add files to be compiled

This commit is contained in:
Gerhard Hoffmann 2023-03-17 12:45:49 +01:00
parent 48a0068ebd
commit 75acd1e3ec

View File

@ -1,22 +1,23 @@
INCLUDEPATH += $$system(pwd)/include DEPENDPATH += $$system(pwd)
INCLUDEPATH += $${PWD}/include
DEPENDPATH += $${PWD}
HEADERS += com.h \
controlBus.h \
datIf.h \
dcBL.h \
hwapi.h \
interfaces.h \
prot.h \
sendWRcmd.h \
storeINdata.h \
tslib.h
HEADERS += $${PWD}/include/com.h \
$${PWD}/include/controlBus.h \
$${PWD}/include/datIf.h \
$${PWD}/include/dcBL.h \
$${PWD}/include/hwapi.h \
$${PWD}/include/interfaces.h \
$${PWD}/include/prot.h \
$${PWD}/include/sendWRcmd.h \
$${PWD}/include/storeINdata.h \
$${PWD}/include/tslib.h
SOURCES += com.cpp \
controlBus.cpp \
datIf.cpp \
dcBL.cpp \
hwapi.cpp \
prot.cpp \
sendWRcmd.cpp \
storeINdata.cpp \
tslib.cpp
SOURCES += $${PWD}/src/com.cpp \
$${PWD}/src/controlBus.cpp \
$${PWD}/src/datIf.cpp \
$${PWD}/src/dcBL.cpp \
$${PWD}/src/hwapi.cpp \
$${PWD}/src/prot.cpp \
$${PWD}/src/sendWRcmd.cpp \
$${PWD}/src/storeINdata.cpp \
$${PWD}/src/tslib.cpp