Skip to content

Commit f9cfcbd

Browse files
authored
Fixed #13323 (building triage tool) (danmar#7018)
1 parent d1a6593 commit f9cfcbd

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

tools/triage/triage.pro

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)