restructuring the folder structure

This commit is contained in:
Daniel Marjamäki 2009-10-25 21:20:42 +01:00
parent 1ee28ba444
commit 90e44bb3bb
7 changed files with 7 additions and 7 deletions

View File

@ -1,14 +1,18 @@
TEMPLATE = app
TARGET = cppcheck
DEPENDPATH += .
INCLUDEPATH += .
INCLUDEPATH += . ../lib
OBJECTS_DIR = temp
CONFIG += warn_on
CONFIG -= qt app_bundle
include($$PWD/../lib/lib.pri)
SOURCES += main.cpp
SOURCES += main.cpp \
cppcheckexecutor.cpp \
threadexecutor.cpp
HEADERS += cppcheckexecutor.cpp \
threadexecutor.cpp
win32 {
CONFIG += embed_manifest_exe console

View File

@ -82,7 +82,7 @@ void CheckOther::checkZeroDivision()
*/
#include "../lib/cppcheckexecutor.h"
#include "cppcheckexecutor.h"
/**
* Main function of cppcheck

View File

@ -13,14 +13,12 @@ HEADERS += $$PWD/check.h \
$$PWD/checkunusedfunctions.h \
$$PWD/classinfo.h \
$$PWD/cppcheck.h \
$$PWD/cppcheckexecutor.h \
$$PWD/errorlogger.h \
$$PWD/filelister.h \
$$PWD/mathlib.h \
$$PWD/preprocessor.h \
$$PWD/resource.h \
$$PWD/settings.h \
$$PWD/threadexecutor.h \
$$PWD/token.h \
$$PWD/tokenize.h
@ -36,12 +34,10 @@ SOURCES += $$PWD/checkautovariables.cpp \
$$PWD/checkstl.cpp \
$$PWD/checkunusedfunctions.cpp \
$$PWD/cppcheck.cpp \
$$PWD/cppcheckexecutor.cpp \
$$PWD/errorlogger.cpp \
$$PWD/filelister.cpp \
$$PWD/mathlib.cpp \
$$PWD/preprocessor.cpp \
$$PWD/settings.cpp \
$$PWD/threadexecutor.cpp \
$$PWD/token.cpp \
$$PWD/tokenize.cpp