log4qt.pri 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. # *******************************************************************************
  2. #
  3. # package: Log4Qt
  4. # file: log4qt.pri
  5. # created: September 2007
  6. # author: Martin Heinrich
  7. #
  8. #
  9. # Copyright 2007 Martin Heinrich
  10. #
  11. # Licensed under the Apache License, Version 2.0 (the "License");
  12. # you may not use this file except in compliance with the License.
  13. # You may obtain a copy of the License at
  14. #
  15. # http://www.apache.org/licenses/LICENSE-2.0
  16. #
  17. # Unless required by applicable law or agreed to in writing, software
  18. # distributed under the License is distributed on an "AS IS" BASIS,
  19. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  20. # See the License for the specific language governing permissions and
  21. # limitations under the License.
  22. #
  23. # *******************************************************************************
  24. INCLUDEPATH += $$PWD/..
  25. DEPENDPATH += $$PWD/..
  26. HEADERS += \
  27. $$PWD/appender.h \
  28. $$PWD/appenderskeleton.h \
  29. $$PWD/basicconfigurator.h \
  30. $$PWD/consoleappender.h \
  31. $$PWD/dailyrollingfileappender.h \
  32. $$PWD/fileappender.h \
  33. $$PWD/helpers/classlogger.h \
  34. $$PWD/helpers/configuratorhelper.h \
  35. $$PWD/helpers/datetime.h \
  36. $$PWD/helpers/factory.h \
  37. $$PWD/helpers/initialisationhelper.h \
  38. $$PWD/helpers/logerror.h \
  39. $$PWD/helpers/logobject.h \
  40. $$PWD/helpers/logobjectptr.h \
  41. $$PWD/helpers/optionconverter.h \
  42. $$PWD/helpers/patternformatter.h \
  43. $$PWD/helpers/properties.h \
  44. $$PWD/hierarchy.h \
  45. $$PWD/layout.h \
  46. $$PWD/level.h \
  47. $$PWD/log4qt.h \
  48. $$PWD/logger.h \
  49. $$PWD/loggerrepository.h \
  50. $$PWD/loggingevent.h \
  51. $$PWD/logmanager.h \
  52. $$PWD/mdc.h \
  53. $$PWD/ndc.h \
  54. $$PWD/patternlayout.h \
  55. $$PWD/propertyconfigurator.h \
  56. $$PWD/rollingfileappender.h \
  57. $$PWD/simplelayout.h \
  58. $$PWD/spi/filter.h \
  59. $$PWD/ttcclayout.h \
  60. $$PWD/writerappender.h \
  61. $$PWD/varia/debugappender.h \
  62. $$PWD/varia/denyallfilter.h \
  63. $$PWD/varia/nullappender.h \
  64. $$PWD/varia/levelmatchfilter.h \
  65. $$PWD/varia/levelrangefilter.h \
  66. $$PWD/varia/listappender.h \
  67. $$PWD/varia/stringmatchfilter.h
  68. SOURCES += \
  69. $$PWD/appenderskeleton.cpp \
  70. $$PWD/basicconfigurator.cpp \
  71. $$PWD/consoleappender.cpp \
  72. $$PWD/dailyrollingfileappender.cpp \
  73. $$PWD/fileappender.cpp \
  74. $$PWD/helpers/classlogger.cpp \
  75. $$PWD/helpers/configuratorhelper.cpp \
  76. $$PWD/helpers/datetime.cpp \
  77. $$PWD/helpers/factory.cpp \
  78. $$PWD/helpers/initialisationhelper.cpp \
  79. $$PWD/helpers/logerror.cpp \
  80. $$PWD/helpers/logobject.cpp \
  81. $$PWD/helpers/logobjectptr.cpp \
  82. $$PWD/helpers/optionconverter.cpp \
  83. $$PWD/helpers/patternformatter.cpp \
  84. $$PWD/helpers/properties.cpp \
  85. $$PWD/hierarchy.cpp \
  86. $$PWD/layout.cpp \
  87. $$PWD/level.cpp \
  88. $$PWD/log4qt.cpp \
  89. $$PWD/logger.cpp \
  90. $$PWD/loggerrepository.cpp \
  91. $$PWD/loggingevent.cpp \
  92. $$PWD/logmanager.cpp \
  93. $$PWD/mdc.cpp \
  94. $$PWD/ndc.cpp \
  95. $$PWD/patternlayout.cpp \
  96. $$PWD/propertyconfigurator.cpp \
  97. $$PWD/rollingfileappender.cpp \
  98. $$PWD/simplelayout.cpp \
  99. $$PWD/spi/filter.cpp \
  100. $$PWD/ttcclayout.cpp \
  101. $$PWD/writerappender.cpp \
  102. $$PWD/varia/debugappender.cpp \
  103. $$PWD/varia/denyallfilter.cpp \
  104. $$PWD/varia/nullappender.cpp \
  105. $$PWD/varia/levelmatchfilter.cpp \
  106. $$PWD/varia/levelrangefilter.cpp \
  107. $$PWD/varia/listappender.cpp \
  108. $$PWD/varia/stringmatchfilter.cpp