GUI: Project file cleanup.
This commit is contained in:
parent
dcfc7aa3f0
commit
eac3a8c86c
92
gui/gui.pro
92
gui/gui.pro
|
@ -6,7 +6,7 @@ DEPENDPATH += . \
|
||||||
../lib
|
../lib
|
||||||
INCLUDEPATH += . \
|
INCLUDEPATH += . \
|
||||||
../lib
|
../lib
|
||||||
LIBS+=-L../externals
|
LIBS += -L../externals
|
||||||
|
|
||||||
DESTDIR = .
|
DESTDIR = .
|
||||||
RCC_DIR = temp
|
RCC_DIR = temp
|
||||||
|
@ -23,15 +23,15 @@ win32 {
|
||||||
}
|
}
|
||||||
|
|
||||||
RESOURCES = gui.qrc
|
RESOURCES = gui.qrc
|
||||||
FORMS = main.ui \
|
FORMS = about.ui \
|
||||||
resultsview.ui \
|
application.ui \
|
||||||
application.ui \
|
file.ui \
|
||||||
settings.ui \
|
logview.ui \
|
||||||
file.ui \
|
main.ui \
|
||||||
projectfile.ui \
|
projectfile.ui \
|
||||||
about.ui \
|
resultsview.ui \
|
||||||
logview.ui \
|
settings.ui \
|
||||||
stats.ui
|
stats.ui
|
||||||
|
|
||||||
TRANSLATIONS = cppcheck_fi.ts \
|
TRANSLATIONS = cppcheck_fi.ts \
|
||||||
cppcheck_fr.ts \
|
cppcheck_fr.ts \
|
||||||
|
@ -50,63 +50,63 @@ CONFIG += embed_manifest_exe
|
||||||
BASEPATH = ../lib/
|
BASEPATH = ../lib/
|
||||||
include($$PWD/../lib/lib.pri)
|
include($$PWD/../lib/lib.pri)
|
||||||
|
|
||||||
HEADERS += mainwindow.h \
|
HEADERS += aboutdialog.h \
|
||||||
checkthread.h \
|
application.h \
|
||||||
resultsview.h \
|
|
||||||
resultstree.h \
|
|
||||||
settingsdialog.h \
|
|
||||||
threadresult.h \
|
|
||||||
threadhandler.h \
|
|
||||||
applicationlist.h \
|
|
||||||
applicationdialog.h \
|
applicationdialog.h \
|
||||||
aboutdialog.h \
|
applicationlist.h \
|
||||||
|
checkstatistics.h \
|
||||||
|
checkthread.h \
|
||||||
common.h \
|
common.h \
|
||||||
|
csvreport.h \
|
||||||
erroritem.h \
|
erroritem.h \
|
||||||
|
filelist.h \
|
||||||
fileviewdialog.h \
|
fileviewdialog.h \
|
||||||
|
logview.h \
|
||||||
|
mainwindow.h \
|
||||||
project.h \
|
project.h \
|
||||||
projectfile.h \
|
projectfile.h \
|
||||||
projectfiledialog.h \
|
projectfiledialog.h \
|
||||||
report.h \
|
report.h \
|
||||||
|
resultstree.h \
|
||||||
|
resultsview.h \
|
||||||
|
settingsdialog.h \
|
||||||
|
statsdialog.h \
|
||||||
|
threadhandler.h \
|
||||||
|
threadresult.h \
|
||||||
|
translationhandler.h \
|
||||||
txtreport.h \
|
txtreport.h \
|
||||||
xmlreport.h \
|
xmlreport.h \
|
||||||
xmlreportv1.h \
|
xmlreportv1.h \
|
||||||
xmlreportv2.h \
|
xmlreportv2.h
|
||||||
translationhandler.h \
|
|
||||||
csvreport.h \
|
|
||||||
logview.h \
|
|
||||||
filelist.h \
|
|
||||||
statsdialog.h \
|
|
||||||
checkstatistics.h \
|
|
||||||
application.h
|
|
||||||
|
|
||||||
SOURCES += main.cpp \
|
SOURCES += aboutdialog.cpp \
|
||||||
mainwindow.cpp\
|
application.cpp \
|
||||||
checkthread.cpp \
|
|
||||||
resultsview.cpp \
|
|
||||||
resultstree.cpp \
|
|
||||||
threadresult.cpp \
|
|
||||||
threadhandler.cpp \
|
|
||||||
settingsdialog.cpp \
|
|
||||||
applicationlist.cpp \
|
|
||||||
applicationdialog.cpp \
|
applicationdialog.cpp \
|
||||||
aboutdialog.cpp \
|
applicationlist.cpp \
|
||||||
|
checkstatistics.cpp \
|
||||||
|
checkthread.cpp \
|
||||||
|
csvreport.cpp \
|
||||||
|
erroritem.cpp \
|
||||||
|
filelist.cpp \
|
||||||
fileviewdialog.cpp \
|
fileviewdialog.cpp \
|
||||||
|
logview.cpp \
|
||||||
|
main.cpp \
|
||||||
|
mainwindow.cpp\
|
||||||
project.cpp \
|
project.cpp \
|
||||||
projectfile.cpp \
|
projectfile.cpp \
|
||||||
projectfiledialog.cpp \
|
projectfiledialog.cpp \
|
||||||
erroritem.cpp \
|
|
||||||
report.cpp \
|
report.cpp \
|
||||||
|
resultstree.cpp \
|
||||||
|
resultsview.cpp \
|
||||||
|
settingsdialog.cpp \
|
||||||
|
statsdialog.cpp \
|
||||||
|
threadhandler.cpp \
|
||||||
|
threadresult.cpp \
|
||||||
|
translationhandler.cpp \
|
||||||
txtreport.cpp \
|
txtreport.cpp \
|
||||||
xmlreport.cpp \
|
xmlreport.cpp \
|
||||||
xmlreportv1.cpp \
|
xmlreportv1.cpp \
|
||||||
xmlreportv2.cpp \
|
xmlreportv2.cpp
|
||||||
translationhandler.cpp \
|
|
||||||
csvreport.cpp \
|
|
||||||
logview.cpp \
|
|
||||||
filelist.cpp \
|
|
||||||
statsdialog.cpp \
|
|
||||||
checkstatistics.cpp \
|
|
||||||
application.cpp
|
|
||||||
|
|
||||||
win32 {
|
win32 {
|
||||||
DEFINES += _CRT_SECURE_NO_WARNINGS
|
DEFINES += _CRT_SECURE_NO_WARNINGS
|
||||||
|
|
Loading…
Reference in New Issue