Reformatting .pro files, adding test skeleton.

This commit is contained in:
lotodore
2010-10-13 17:47:16 +00:00
parent b87fd5162f
commit 3b1ed27175
7 changed files with 957 additions and 934 deletions
+38 -38
View File
@@ -6,58 +6,58 @@ QT += network
QT -= gui
TARGET = chatcleaner
CONFIG += console \
debug
debug
CONFIG -= app_bundle
MOC_DIR = mocs
OBJECTS_DIR = obj
TEMPLATE = app
INCLUDEPATH += src/ \
src/third_party/tinyxml \
src/chatcleaner/ \
src/third_party/asn1/ \
src/net/
src/third_party/tinyxml \
src/chatcleaner/ \
src/third_party/asn1/ \
src/net/
DEPENDPATH += src/ \
src/third_party/tinyxml \
src/chatcleaner/ \
src/third_party/asn1/ \
src/net/
src/third_party/tinyxml \
src/chatcleaner/ \
src/third_party/asn1/ \
src/net/
SOURCES += chatcleaner.cpp \
cleanerserver.cpp \
messagefilter.cpp \
badwordcheck.cpp \
textfloodcheck.cpp \
cleanerconfig.cpp \
tinystr.cpp \
tinyxml.cpp \
tinyxmlerror.cpp \
tinyxmlparser.cpp \
capsfloodcheck.cpp \
letterrepeatingcheck.cpp \
urlcheck.cpp
cleanerserver.cpp \
messagefilter.cpp \
badwordcheck.cpp \
textfloodcheck.cpp \
cleanerconfig.cpp \
tinystr.cpp \
tinyxml.cpp \
tinyxmlerror.cpp \
tinyxmlparser.cpp \
capsfloodcheck.cpp \
letterrepeatingcheck.cpp \
urlcheck.cpp
HEADERS += cleanerserver.h \
messagefilter.h \
badwordcheck.h \
textfloodcheck.h \
cleanerconfig.h \
tinyxml.h \
tinystr.h \
capsfloodcheck.h \
letterrepeatingcheck.h \
messagefilter.h \
badwordcheck.h \
textfloodcheck.h \
cleanerconfig.h \
tinyxml.h \
tinystr.h \
capsfloodcheck.h \
letterrepeatingcheck.h \
urlcheck.h
LIBPATH += lib
LIBS += -lpokerth_lib \
-lpokerth_protocol
-lpokerth_protocol
win32 {
LIBPATH += ../boost/stage/lib
INCLUDEPATH += ../boost/
debug:LIBPATH += Debug/lib
release:LIBPATH += Release/lib
LIBPATH += ../boost/stage/lib
INCLUDEPATH += ../boost/
debug:LIBPATH += Debug/lib
release:LIBPATH += Release/lib
}
mac {
# make it universal
CONFIG += x86
# make it universal
CONFIG += x86
CONFIG -= ppc
QMAKE_MACOSX_DEPLOYMENT_TARGET = 10.5
LIBPATH += /Developer/SDKs/MacOSX10.5.sdk/usr/lib
INCLUDEPATH += /Developer/SDKs/MacOSX10.5.sdk/usr/include/
LIBPATH += /Developer/SDKs/MacOSX10.5.sdk/usr/lib
INCLUDEPATH += /Developer/SDKs/MacOSX10.5.sdk/usr/include/
}