123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111 |
- # *******************************************************************************
- #
- # package: Log4Qt
- # file: log4qt.pri
- # created: September 2007
- # author: Martin Heinrich
- #
- #
- # Copyright 2007 Martin Heinrich
- #
- # Licensed under the Apache License, Version 2.0 (the "License");
- # you may not use this file except in compliance with the License.
- # You may obtain a copy of the License at
- #
- # http://www.apache.org/licenses/LICENSE-2.0
- #
- # Unless required by applicable law or agreed to in writing, software
- # distributed under the License is distributed on an "AS IS" BASIS,
- # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- # See the License for the specific language governing permissions and
- # limitations under the License.
- #
- # *******************************************************************************
- INCLUDEPATH += $$PWD/..
- DEPENDPATH += $$PWD/..
- HEADERS += \
- $$PWD/appender.h \
- $$PWD/appenderskeleton.h \
- $$PWD/basicconfigurator.h \
- $$PWD/consoleappender.h \
- $$PWD/dailyrollingfileappender.h \
- $$PWD/fileappender.h \
- $$PWD/helpers/classlogger.h \
- $$PWD/helpers/configuratorhelper.h \
- $$PWD/helpers/datetime.h \
- $$PWD/helpers/factory.h \
- $$PWD/helpers/initialisationhelper.h \
- $$PWD/helpers/logerror.h \
- $$PWD/helpers/logobject.h \
- $$PWD/helpers/logobjectptr.h \
- $$PWD/helpers/optionconverter.h \
- $$PWD/helpers/patternformatter.h \
- $$PWD/helpers/properties.h \
- $$PWD/hierarchy.h \
- $$PWD/layout.h \
- $$PWD/level.h \
- $$PWD/log4qt.h \
- $$PWD/logger.h \
- $$PWD/loggerrepository.h \
- $$PWD/loggingevent.h \
- $$PWD/logmanager.h \
- $$PWD/mdc.h \
- $$PWD/ndc.h \
- $$PWD/patternlayout.h \
- $$PWD/propertyconfigurator.h \
- $$PWD/rollingfileappender.h \
- $$PWD/simplelayout.h \
- $$PWD/spi/filter.h \
- $$PWD/ttcclayout.h \
- $$PWD/writerappender.h \
- $$PWD/varia/debugappender.h \
- $$PWD/varia/denyallfilter.h \
- $$PWD/varia/nullappender.h \
- $$PWD/varia/levelmatchfilter.h \
- $$PWD/varia/levelrangefilter.h \
- $$PWD/varia/listappender.h \
- $$PWD/varia/stringmatchfilter.h
-
- SOURCES += \
- $$PWD/appenderskeleton.cpp \
- $$PWD/basicconfigurator.cpp \
- $$PWD/consoleappender.cpp \
- $$PWD/dailyrollingfileappender.cpp \
- $$PWD/fileappender.cpp \
- $$PWD/helpers/classlogger.cpp \
- $$PWD/helpers/configuratorhelper.cpp \
- $$PWD/helpers/datetime.cpp \
- $$PWD/helpers/factory.cpp \
- $$PWD/helpers/initialisationhelper.cpp \
- $$PWD/helpers/logerror.cpp \
- $$PWD/helpers/logobject.cpp \
- $$PWD/helpers/logobjectptr.cpp \
- $$PWD/helpers/optionconverter.cpp \
- $$PWD/helpers/patternformatter.cpp \
- $$PWD/helpers/properties.cpp \
- $$PWD/hierarchy.cpp \
- $$PWD/layout.cpp \
- $$PWD/level.cpp \
- $$PWD/log4qt.cpp \
- $$PWD/logger.cpp \
- $$PWD/loggerrepository.cpp \
- $$PWD/loggingevent.cpp \
- $$PWD/logmanager.cpp \
- $$PWD/mdc.cpp \
- $$PWD/ndc.cpp \
- $$PWD/patternlayout.cpp \
- $$PWD/propertyconfigurator.cpp \
- $$PWD/rollingfileappender.cpp \
- $$PWD/simplelayout.cpp \
- $$PWD/spi/filter.cpp \
- $$PWD/ttcclayout.cpp \
- $$PWD/writerappender.cpp \
- $$PWD/varia/debugappender.cpp \
- $$PWD/varia/denyallfilter.cpp \
- $$PWD/varia/nullappender.cpp \
- $$PWD/varia/levelmatchfilter.cpp \
- $$PWD/varia/levelrangefilter.cpp \
- $$PWD/varia/listappender.cpp \
- $$PWD/varia/stringmatchfilter.cpp
-
|