cppcheck/gui/gui.pro

140 lines
3.3 KiB
Prolog
Raw Normal View History

2011-04-02 19:16:18 +02:00
TEMPLATE = app
TARGET = cppcheck-gui
CONFIG += warn_on
2011-04-02 19:16:18 +02:00
DEPENDPATH += . \
../lib
INCLUDEPATH += . \
../lib
contains(LINKCORE, [yY][eE][sS]) {
LIBS += -l../bin/cppcheck-core
DEFINES += CPPCHECKLIB_IMPORT
}
2011-04-04 13:18:28 +02:00
LIBS += -L../externals
2011-04-02 19:16:18 +02:00
DESTDIR = .
RCC_DIR = temp
MOC_DIR = temp
OBJECTS_DIR = temp
UI_DIR = temp
win32 {
CONFIG += windows
contains(LINKCORE, [yY][eE][sS]) {
DESTDIR = ../bin
RCC_DIR = temp/generated
MOC_DIR = temp/generated
OBJECTS_DIR = temp/generated
UI_DIR = temp/generated
} else {
DESTDIR = ../Build/gui
RCC_DIR = ../BuildTmp/gui
MOC_DIR = ../BuildTmp/gui
OBJECTS_DIR = ../BuildTmp/gui
UI_DIR = ../BuildTmp/gui
}
2011-04-02 19:16:18 +02:00
}
RESOURCES = gui.qrc
2011-04-04 13:18:28 +02:00
FORMS = about.ui \
application.ui \
file.ui \
logview.ui \
main.ui \
projectfile.ui \
resultsview.ui \
settings.ui \
stats.ui \
selectfilesdialog.ui
2011-04-02 19:16:18 +02:00
TRANSLATIONS = cppcheck_de.ts \
cppcheck_es.ts \
cppcheck_fi.ts \
2011-04-02 19:16:18 +02:00
cppcheck_fr.ts \
2012-09-16 13:21:46 +02:00
cppcheck_it.ts \
cppcheck_ja.ts \
2012-07-28 15:10:39 +02:00
cppcheck_ko.ts \
2011-04-02 19:16:18 +02:00
cppcheck_nl.ts \
cppcheck_ru.ts \
cppcheck_sr.ts \
cppcheck_sv.ts
2011-04-02 19:16:18 +02:00
# Windows-specific options
CONFIG += embed_manifest_exe
contains(LINKCORE, [yY][eE][sS]) {
} else {
BASEPATH = ../lib/
include($$PWD/../lib/lib.pri)
}
2011-04-02 19:16:18 +02:00
2011-04-04 13:18:28 +02:00
HEADERS += aboutdialog.h \
application.h \
2011-04-02 19:16:18 +02:00
applicationdialog.h \
2011-04-04 13:18:28 +02:00
applicationlist.h \
checkstatistics.h \
checkthread.h \
2011-04-02 19:16:18 +02:00
common.h \
2011-04-04 13:18:28 +02:00
csvreport.h \
2011-04-02 19:16:18 +02:00
erroritem.h \
2011-04-04 13:18:28 +02:00
filelist.h \
2011-04-02 19:16:18 +02:00
fileviewdialog.h \
2011-04-04 13:18:28 +02:00
logview.h \
mainwindow.h \
platforms.h \
2011-04-02 19:16:18 +02:00
project.h \
projectfile.h \
projectfiledialog.h \
report.h \
2011-04-04 13:18:28 +02:00
resultstree.h \
resultsview.h \
settingsdialog.h \
2011-12-27 20:13:16 +01:00
showtypes.h \
2011-04-04 13:18:28 +02:00
statsdialog.h \
threadhandler.h \
threadresult.h \
translationhandler.h \
2011-04-02 19:16:18 +02:00
txtreport.h \
xmlreport.h \
xmlreportv1.h \
xmlreportv2.h \
selectfilesdialog.h
2011-04-02 19:16:18 +02:00
2011-04-04 13:18:28 +02:00
SOURCES += aboutdialog.cpp \
application.cpp \
2011-04-02 19:16:18 +02:00
applicationdialog.cpp \
2011-04-04 13:18:28 +02:00
applicationlist.cpp \
checkstatistics.cpp \
checkthread.cpp \
csvreport.cpp \
erroritem.cpp \
filelist.cpp \
2011-04-02 19:16:18 +02:00
fileviewdialog.cpp \
2011-04-04 13:18:28 +02:00
logview.cpp \
main.cpp \
mainwindow.cpp\
platforms.cpp \
2011-04-02 19:16:18 +02:00
project.cpp \
projectfile.cpp \
projectfiledialog.cpp \
report.cpp \
2011-04-04 13:18:28 +02:00
resultstree.cpp \
resultsview.cpp \
settingsdialog.cpp \
2011-12-27 20:13:16 +01:00
showtypes.cpp \
2011-04-04 13:18:28 +02:00
statsdialog.cpp \
threadhandler.cpp \
threadresult.cpp \
translationhandler.cpp \
2011-04-02 19:16:18 +02:00
txtreport.cpp \
xmlreport.cpp \
xmlreportv1.cpp \
xmlreportv2.cpp \
selectfilesdialog.cpp
2011-04-02 19:16:18 +02:00
win32 {
DEFINES += _CRT_SECURE_NO_WARNINGS
RC_FILE = cppcheck-gui.rc
HEADERS += ../cli/resource.h
LIBS += -lshlwapi
}