cppcheck/cli/cli.pro

39 lines
767 B
Prolog
Raw Normal View History

TEMPLATE = app
TARGET = cppcheck
DEPENDPATH += .
INCLUDEPATH += . ../lib
OBJECTS_DIR = temp
CONFIG += warn_on
CONFIG -= qt app_bundle
include(../console_common.pri)
BASEPATH = ../lib/
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 \
filelister.cpp \
pathmatch.cpp \
2009-10-25 21:20:42 +01:00
threadexecutor.cpp
2010-12-12 11:56:22 +01:00
HEADERS += cppcheckexecutor.h \
cmdlineparser.h \
filelister.h \
pathmatch.h \
2010-12-12 11:56:22 +01:00
threadexecutor.h
win32 {
RC_FILE = version.rc
HEADERS += ../lib/version.h
}
# Enable STL checking in GCC debug builds
contains(QMAKE_CXX, g++) {
2009-11-28 18:29:32 +01:00
CONFIG(debug, debug|release) {
# checked STL
DEFINES += _GLIBCXX_DEBUG
}
}