1 |
c137512e
|
Oto Šťáva
|
INCLUDEPATH += $$PWD
|
2 |
|
|
#DEFINES += QS_LOG_LINE_NUMBERS # automatically writes the file and line for each log message
|
3 |
|
|
#DEFINES += QS_LOG_DISABLE # logging code is replaced with a no-op
|
4 |
|
|
#DEFINES += QS_LOG_SEPARATE_THREAD # messages are queued and written from a separate thread
|
5 |
|
|
SOURCES += $$PWD/QsLogDest.cpp \
|
6 |
|
|
$$PWD/QsLog.cpp \
|
7 |
|
|
$$PWD/QsLogDestConsole.cpp \
|
8 |
|
|
$$PWD/QsLogDestFile.cpp \
|
9 |
|
|
$$PWD/QsLogDestFunctor.cpp
|
10 |
|
|
|
11 |
|
|
HEADERS += $$PWD/QsLogDest.h \
|
12 |
|
|
$$PWD/QsLog.h \
|
13 |
|
|
$$PWD/QsLogDestConsole.h \
|
14 |
|
|
$$PWD/QsLogLevel.h \
|
15 |
|
|
$$PWD/QsLogDestFile.h \
|
16 |
|
|
$$PWD/QsLogDisableForThisFile.h \
|
17 |
|
|
$$PWD/QsLogDestFunctor.h
|
18 |
|
|
|
19 |
|
|
OTHER_FILES += \
|
20 |
|
|
$$PWD/QsLogChanges.txt \
|
21 |
|
|
$$PWD/QsLogReadme.txt \
|
22 |
|
|
$$PWD/LICENSE.txt
|