cppcheck/tools/triage/triage.pro

25 lines
484 B
Prolog
Raw Permalink Normal View History

lessThan(QT_MAJOR_VERSION, 5): error(requires >= Qt 5 (You used: $$QT_VERSION))
QT += core gui widgets
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
MOC_DIR = temp
OBJECTS_DIR = temp
UI_DIR = temp
SOURCES += main.cpp\
mainwindow.cpp \
../../gui/codeeditorstyle.cpp \
2018-05-02 12:59:34 +02:00
../../gui/codeeditor.cpp
HEADERS += mainwindow.h \
../../gui/codeeditorstyle.h \
2018-05-02 12:59:34 +02:00
../../gui/codeeditor.h
FORMS += mainwindow.ui