Files
BionxControl/BionxControl.pro

68 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
2025-12-31 16:30:03 +01:00
CONFIG += c++23
2025-12-15 20:57:09 +01:00
2026-01-01 00:40:27 +01:00
QMAKE_CXXFLAGS += -std=c++23
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
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-29 23:29:56 +01:00
bcanimateddelegate.cpp \
bcdeviceview.cpp \
2025-12-30 10:12:01 +01:00
bcdriver.cpp \
bcdrivertinycan.cpp \
2025-12-23 14:58:54 +01:00
bclegacy.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 \
2025-12-31 16:30:03 +01:00
bcxmlloader.cpp \
lib/can_drv_win.c \
2025-12-15 20:57:09 +01:00
main.cpp \
bcmainwindow.cpp
HEADERS += \
bc.h \
2025-12-29 23:29:56 +01:00
bcanimateddelegate.h \
bcdeviceview.h \
2025-12-30 10:12:01 +01:00
bcdriver.h \
bcdrivertinycan.h \
2025-12-15 20:57:09 +01:00
bcmainwindow.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-31 16:30:03 +01:00
bcvaluetype.h \
bcxmlloader.h
2025-12-15 20:57:09 +01:00
FORMS += \
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