2022-09-06 23:11:39 +02:00
|
|
|
lessThan(QT_MAJOR_VERSION, 5): error(requires >= Qt 5 (You used: $$QT_VERSION))
|
2018-01-01 09:22:11 +01:00
|
|
|
|
2022-09-06 23:11:39 +02:00
|
|
|
QT += core gui widgets
|
2018-01-01 09:22:11 +01:00
|
|
|
|
|
|
|
TARGET = triage
|
|
|
|
TEMPLATE = app
|
|
|
|
|
2018-04-16 10:50:56 +02:00
|
|
|
QMAKE_CXXFLAGS += -std=c++11
|
2018-05-02 12:59:34 +02:00
|
|
|
INCLUDEPATH += ../../gui
|
2018-04-16 10:50:56 +02:00
|
|
|
|
2022-09-06 23:11:39 +02:00
|
|
|
MOC_DIR = temp
|
|
|
|
OBJECTS_DIR = temp
|
|
|
|
UI_DIR = temp
|
2018-01-01 09:22:11 +01:00
|
|
|
|
|
|
|
SOURCES += main.cpp\
|
|
|
|
mainwindow.cpp \
|
2019-06-23 19:04:53 +02:00
|
|
|
../../gui/codeeditorstyle.cpp \
|
2018-05-02 12:59:34 +02:00
|
|
|
../../gui/codeeditor.cpp
|
2018-01-01 09:22:11 +01:00
|
|
|
|
|
|
|
HEADERS += mainwindow.h \
|
2019-06-23 19:04:53 +02:00
|
|
|
../../gui/codeeditorstyle.h \
|
2018-05-02 12:59:34 +02:00
|
|
|
../../gui/codeeditor.h
|
2018-01-01 09:22:11 +01:00
|
|
|
|
|
|
|
FORMS += mainwindow.ui
|