restructuring the folder structure
This commit is contained in:
parent
1ee28ba444
commit
90e44bb3bb
|
@ -1,14 +1,18 @@
|
||||||
TEMPLATE = app
|
TEMPLATE = app
|
||||||
TARGET = cppcheck
|
TARGET = cppcheck
|
||||||
DEPENDPATH += .
|
DEPENDPATH += .
|
||||||
INCLUDEPATH += .
|
INCLUDEPATH += . ../lib
|
||||||
OBJECTS_DIR = temp
|
OBJECTS_DIR = temp
|
||||||
CONFIG += warn_on
|
CONFIG += warn_on
|
||||||
CONFIG -= qt app_bundle
|
CONFIG -= qt app_bundle
|
||||||
|
|
||||||
include($$PWD/../lib/lib.pri)
|
include($$PWD/../lib/lib.pri)
|
||||||
|
|
||||||
SOURCES += main.cpp
|
SOURCES += main.cpp \
|
||||||
|
cppcheckexecutor.cpp \
|
||||||
|
threadexecutor.cpp
|
||||||
|
HEADERS += cppcheckexecutor.cpp \
|
||||||
|
threadexecutor.cpp
|
||||||
|
|
||||||
win32 {
|
win32 {
|
||||||
CONFIG += embed_manifest_exe console
|
CONFIG += embed_manifest_exe console
|
||||||
|
|
|
@ -82,7 +82,7 @@ void CheckOther::checkZeroDivision()
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
||||||
#include "../lib/cppcheckexecutor.h"
|
#include "cppcheckexecutor.h"
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Main function of cppcheck
|
* Main function of cppcheck
|
||||||
|
|
|
@ -13,14 +13,12 @@ HEADERS += $$PWD/check.h \
|
||||||
$$PWD/checkunusedfunctions.h \
|
$$PWD/checkunusedfunctions.h \
|
||||||
$$PWD/classinfo.h \
|
$$PWD/classinfo.h \
|
||||||
$$PWD/cppcheck.h \
|
$$PWD/cppcheck.h \
|
||||||
$$PWD/cppcheckexecutor.h \
|
|
||||||
$$PWD/errorlogger.h \
|
$$PWD/errorlogger.h \
|
||||||
$$PWD/filelister.h \
|
$$PWD/filelister.h \
|
||||||
$$PWD/mathlib.h \
|
$$PWD/mathlib.h \
|
||||||
$$PWD/preprocessor.h \
|
$$PWD/preprocessor.h \
|
||||||
$$PWD/resource.h \
|
$$PWD/resource.h \
|
||||||
$$PWD/settings.h \
|
$$PWD/settings.h \
|
||||||
$$PWD/threadexecutor.h \
|
|
||||||
$$PWD/token.h \
|
$$PWD/token.h \
|
||||||
$$PWD/tokenize.h
|
$$PWD/tokenize.h
|
||||||
|
|
||||||
|
@ -36,12 +34,10 @@ SOURCES += $$PWD/checkautovariables.cpp \
|
||||||
$$PWD/checkstl.cpp \
|
$$PWD/checkstl.cpp \
|
||||||
$$PWD/checkunusedfunctions.cpp \
|
$$PWD/checkunusedfunctions.cpp \
|
||||||
$$PWD/cppcheck.cpp \
|
$$PWD/cppcheck.cpp \
|
||||||
$$PWD/cppcheckexecutor.cpp \
|
|
||||||
$$PWD/errorlogger.cpp \
|
$$PWD/errorlogger.cpp \
|
||||||
$$PWD/filelister.cpp \
|
$$PWD/filelister.cpp \
|
||||||
$$PWD/mathlib.cpp \
|
$$PWD/mathlib.cpp \
|
||||||
$$PWD/preprocessor.cpp \
|
$$PWD/preprocessor.cpp \
|
||||||
$$PWD/settings.cpp \
|
$$PWD/settings.cpp \
|
||||||
$$PWD/threadexecutor.cpp \
|
|
||||||
$$PWD/token.cpp \
|
$$PWD/token.cpp \
|
||||||
$$PWD/tokenize.cpp
|
$$PWD/tokenize.cpp
|
||||||
|
|
Loading…
Reference in New Issue