2009-07-14 13:36:05 +02:00
|
|
|
TEMPLATE = app
|
|
|
|
TARGET = cppcheck
|
|
|
|
DEPENDPATH += .
|
2010-12-12 17:26:13 +01:00
|
|
|
INCLUDEPATH += . ../lib
|
2009-07-14 13:36:05 +02:00
|
|
|
OBJECTS_DIR = temp
|
2009-08-17 17:12:53 +02:00
|
|
|
CONFIG += warn_on
|
2009-08-30 13:26:10 +02:00
|
|
|
CONFIG -= qt app_bundle
|
2009-07-14 13:36:05 +02:00
|
|
|
|
2012-06-18 08:11:28 +02:00
|
|
|
include(../console_common.pri)
|
|
|
|
|
2010-12-18 15:29:58 +01:00
|
|
|
BASEPATH = ../externals/tinyxml/
|
2010-12-12 11:56:22 +01:00
|
|
|
include($$PWD/../externals/tinyxml/tinyxml.pri)
|
2010-12-18 16:03:46 +01:00
|
|
|
BASEPATH = ../lib/
|
2009-10-25 19:29:10 +01:00
|
|
|
include($$PWD/../lib/lib.pri)
|
|
|
|
|
2009-10-25 21:20:42 +01:00
|
|
|
SOURCES += main.cpp \
|
|
|
|
cppcheckexecutor.cpp \
|
2010-12-12 11:56:22 +01:00
|
|
|
cmdlineparser.cpp \
|
2011-01-18 18:37:15 +01:00
|
|
|
filelister.cpp \
|
2011-01-31 14:25:51 +01:00
|
|
|
pathmatch.cpp \
|
2009-10-25 21:20:42 +01:00
|
|
|
threadexecutor.cpp
|
2011-01-31 14:25:51 +01:00
|
|
|
|
2010-12-12 11:56:22 +01:00
|
|
|
HEADERS += cppcheckexecutor.h \
|
2011-01-18 18:37:15 +01:00
|
|
|
cmdlineparser.h \
|
|
|
|
filelister.h \
|
2011-01-31 14:25:51 +01:00
|
|
|
pathmatch.h \
|
2010-12-12 11:56:22 +01:00
|
|
|
threadexecutor.h
|
2009-07-14 13:36:05 +02:00
|
|
|
|
|
|
|
win32 {
|
2012-10-14 10:21:22 +02:00
|
|
|
RC_FILE = version.rc
|
|
|
|
HEADERS += ../lib/version.h
|
2009-07-18 12:10:24 +02:00
|
|
|
}
|
|
|
|
|
2012-06-18 08:11:28 +02:00
|
|
|
# Enable STL checking in GCC debug builds
|
2009-07-18 12:10:24 +02:00
|
|
|
contains(QMAKE_CXX, g++) {
|
2009-11-28 18:29:32 +01:00
|
|
|
CONFIG(debug, debug|release) {
|
|
|
|
# checked STL
|
|
|
|
DEFINES += _GLIBCXX_DEBUG
|
|
|
|
}
|
2009-07-18 12:10:24 +02:00
|
|
|
}
|