You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
1.2 KiB
47 lines
1.2 KiB
QT += core widgets webenginewidgets positioning webchannel
|
|
CONFIG += c++17
|
|
TEMPLATE = app
|
|
TARGET = Drone_project
|
|
|
|
SOURCES += \
|
|
Src/core/main.cpp \
|
|
Src/ui/mainwindow.cpp \
|
|
Src/models/dronedata.cpp \
|
|
Src/models/detectiondata.cpp \
|
|
Src/models/targetdata.cpp \
|
|
Src/pages/videopage.cpp \
|
|
Src/pages/mappage.cpp \
|
|
Src/pages/mapbridge.cpp \
|
|
Src/pages/datapage.cpp \
|
|
Src/pages/taskdata.cpp \
|
|
Src/pages/visionmodelpage.cpp \
|
|
Src/utils/stylehelper.cpp \
|
|
Src/pages/taskdecisionpage.cpp \
|
|
Src/pages/dronemanagementpage.cpp \
|
|
Src/pages/taskdetailspage.cpp \
|
|
Src/utils/config.cpp \
|
|
Src/utils/logger.cpp \
|
|
Src/utils/errorhandler.cpp
|
|
|
|
HEADERS += \
|
|
Src/ui/mainwindow.h \
|
|
Src/models/dronedata.h \
|
|
Src/models/detectiondata.h \
|
|
Src/models/targetdata.h \
|
|
Src/pages/videopage.h \
|
|
Src/pages/mappage.h \
|
|
Src/pages/mapbridge.h \
|
|
Src/pages/datapage.h \
|
|
Src/pages/taskdata.h \
|
|
Src/pages/visionmodelpage.h \
|
|
Src/utils/stylehelper.h \
|
|
Src/pages/taskdecisionpage.h \
|
|
Src/pages/dronemanagementpage.h \
|
|
Src/pages/taskdetailspage.h \
|
|
Src/utils/config.h \
|
|
Src/utils/logger.h \
|
|
Src/utils/errorhandler.h
|
|
|
|
RESOURCES += \
|
|
Src/resources/app.qrc
|