cppcheck/tools/triage/triage.pro
Oliver Stöneberg 54771306c5
selfcheck : cleaned up some suppressions, fixed warnings and some cleanups (#4436)
* cleaned up triage.pro and pass all triage files to selfcheck

* CI-unixish.yml: factored out redundant selfcheck flags

* CI-unixish.yml: cleaned up selfcheck suppressions and fixed warnings

* added explicit `missingInclude` checks to selfcheck to work around current issues/limitations / fixed selfcheck includes / added some unit tests for `missingInclude`

* applied the selfcheck changes to the sanitizer jobs

* only fail TSAN CI build in case of TSAN error / updated sanitizer CI build TODOs
2022-09-06 23:11:39 +02:00

25 lines
484 B
Prolog

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