Files
BionxControl/BionxControl.pro

69 lines
1.5 KiB
Prolog
Raw Normal View History

2025-12-15 20:57:09 +01:00
QT += core gui
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
CONFIG += c++20
# You can make your code fail to compile if it uses deprecated APIs.
# In order to do so, uncomment the following line.
#DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0
INCLUDEPATH += . lib
2025-12-15 20:57:09 +01:00
linux {
#LIBS += -lpigpio -lpigpiod_if2 -lrt
# FIXME SOURCES +=
}
windows
{
#LIBS += -L$$PWD/can_api -lmhstcan -lAdvapi32
2025-12-15 20:57:09 +01:00
}
# You can make your code fail to compile if it uses deprecated APIs.
# In order to do so, uncomment the following line.
#DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0
SOURCES += \
bc.cpp \
2025-12-23 20:47:03 +01:00
bcdatamanager.cpp \
2025-12-28 22:48:18 +01:00
bcdelegate.cpp \
2025-12-26 12:04:02 +01:00
bcdevicepanel.cpp \
2025-12-23 14:58:54 +01:00
bclegacy.cpp \
2025-12-26 12:04:02 +01:00
bctoolbutton.cpp \
2025-12-18 20:34:38 +01:00
bctransmitter.cpp \
2025-12-28 22:48:18 +01:00
bcvalue.cpp \
2025-12-26 15:19:33 +01:00
bcvaluemodel.cpp \
2025-12-24 12:11:59 +01:00
bcvaluetype.cpp \
lib/can_drv_win.c \
bccandriver.cpp \
bccandrivertinycan.cpp \
2025-12-15 20:57:09 +01:00
main.cpp \
bcmainwindow.cpp
HEADERS += \
bc.h \
bccandriver.h \
bccandrivertinycan.h \
2025-12-23 20:47:03 +01:00
bcdatamanager.h \
2025-12-28 22:48:18 +01:00
bcdelegate.h \
2025-12-26 12:04:02 +01:00
bcdevicepanel.h \
2025-12-15 20:57:09 +01:00
bcmainwindow.h \
2025-12-26 12:04:02 +01:00
bctoolbutton.h \
2025-12-24 12:11:59 +01:00
bctransmitter.h \
2025-12-28 22:48:18 +01:00
bcvalue.h \
2025-12-26 15:19:33 +01:00
bcvaluemodel.h \
2025-12-24 12:11:59 +01:00
bcvaluetype.h
2025-12-15 20:57:09 +01:00
FORMS += \
2025-12-26 12:04:02 +01:00
bcdevicepanel.ui \
2025-12-15 20:57:09 +01:00
bcmainwindow.ui
# Default rules for deployment.
qnx: target.path = /tmp/$${TARGET}/bin
else: unix:!android: target.path = /opt/$${TARGET}/bin
!isEmpty(target.path): INSTALLS += target
RESOURCES += \
2025-12-19 13:24:18 +01:00
bionxcontrol.qrc