We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d1a6593 commit f9cfcbdCopy full SHA for f9cfcbd
tools/triage/triage.pro
@@ -0,0 +1,17 @@
1
+lessThan(QT_MAJOR_VERSION, 5): error(requires >= Qt 5 (You used: $$QT_VERSION))
2
+QT += core gui widgets
3
+TARGET = triage
4
+TEMPLATE = app
5
+QMAKE_CXXFLAGS += -std=c++11
6
+INCLUDEPATH += ../../gui
7
+MOC_DIR = temp
8
+OBJECTS_DIR = temp
9
+UI_DIR = temp
10
+SOURCES += main.cpp\
11
+ mainwindow.cpp \
12
+ ../../gui/codeeditorstyle.cpp \
13
+ ../../gui/codeeditor.cpp
14
+HEADERS += mainwindow.h \
15
+ ../../gui/codeeditorstyle.h \
16
+ ../../gui/codeeditor.h
17
+FORMS += mainwindow.ui
0 commit comments