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.
25 lines
484 B
25 lines
484 B
lessThan(QT_MAJOR_VERSION, 5): error(requires >= Qt 5 (You used: $$QT_VERSION))
|
|
|
|
QT += core gui widgets
|
|
|
|
TARGET = triage
|
|
TEMPLATE = app
|
|
|
|
QMAKE_CXXFLAGS += -std=c++11
|
|
INCLUDEPATH += ../../gui
|
|
|
|
MOC_DIR = temp
|
|
OBJECTS_DIR = temp
|
|
UI_DIR = temp
|
|
|
|
SOURCES += main.cpp\
|
|
mainwindow.cpp \
|
|
../../gui/codeeditorstyle.cpp \
|
|
../../gui/codeeditor.cpp
|
|
|
|
HEADERS += mainwindow.h \
|
|
../../gui/codeeditorstyle.h \
|
|
../../gui/codeeditor.h
|
|
|
|
FORMS += mainwindow.ui
|