Newer
Older
#-------------------------------------------------
#
# Project created by QtCreator 2018-04-26T16:04:19
#
#-------------------------------------------------
QT += core gui
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
#greaterThan(QT_MAJOR_VERSION, 4): QT += svg
greaterThan(QT_MAJOR_VERSION, 4): QT += charts

Paul Beuchat
committed
#greaterThan(QT_MAJOR_VERSION, 4): QT += multimedia
TARGET = flyingAgentGUI
TEMPLATE = app
INCLUDEPATH += $$PWD/include
CONFIG += c++11
SOURCES += src/main.cpp\
src/mainwindow.cpp \
src/topbanner.cpp \
src/connectstartstopbar.cpp \
src/enablecontrollerloadyamlbar.cpp \

Paul Beuchat
committed
src/controllerstatusbanner.cpp \
src/controllertabs.cpp \
src/csonecontrollertab.cpp \
src/safecontrollertab.cpp \
src/coordinator.cpp \
src/coordinatorrow.cpp \
src/studentcontrollertab.cpp \
src/defaultcontrollertab.cpp \
src/pickercontrollertab.cpp \

beuchatp
committed
src/templatecontrollertab.cpp \
src/tutorialcontrollertab.cpp \

beuchatp
committed
src/tuningcontrollertab.cpp \
src/remotecontrollertab.cpp

beuchatp
committed
HEADERS += include/mainwindow.h \
include/topbanner.h \
include/connectstartstopbar.h \
include/enablecontrollerloadyamlbar.h \

Paul Beuchat
committed
include/controllerstatusbanner.h \
include/controllertabs.h \
include/csonecontrollertab.h \
include/safecontrollertab.h \
include/coordinator.h \
include/coordinatorrow.h \
include/studentcontrollertab.h \
include/defaultcontrollertab.h \
include/pickercontrollertab.h \

beuchatp
committed
include/templatecontrollertab.h \
include/tutorialcontrollertab.h \
include/tuningcontrollertab.h \

beuchatp
committed
include/Constants_for_Qt_compile.h \
include/remotecontrollertab.h

beuchatp
committed
FORMS += forms/mainwindow.ui \
forms/topbanner.ui \
forms/connectstartstopbar.ui \
forms/enablecontrollerloadyamlbar.ui \
forms/controllertabs.ui \

Paul Beuchat
committed
forms/controllerstatusbanner.ui \
forms/csonecontrollertab.ui \
forms/safecontrollertab.ui \
forms/coordinator.ui \
forms/coordinatorrow.ui \
forms/studentcontrollertab.ui \
forms/defaultcontrollertab.ui \
forms/pickercontrollertab.ui \

beuchatp
committed
forms/templatecontrollertab.ui \
forms/tutorialcontrollertab.ui \

beuchatp
committed
forms/tuningcontrollertab.ui \
forms/remotecontrollertab.ui

beuchatp
committed
RESOURCES += \
flyingagentgui.qrc