You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
734 B
Plaintext
23 lines
734 B
Plaintext
1 year ago
|
INCLUDEPATH += $$PWD
|
||
|
#DEFINES += QS_LOG_LINE_NUMBERS # automatically writes the file and line for each log message
|
||
|
#DEFINES += QS_LOG_DISABLE # logging code is replaced with a no-op
|
||
|
#DEFINES += QS_LOG_SEPARATE_THREAD # messages are queued and written from a separate thread
|
||
|
SOURCES += $$PWD/QsLogDest.cpp \
|
||
|
$$PWD/QsLog.cpp \
|
||
|
$$PWD/QsLogDestConsole.cpp \
|
||
|
$$PWD/QsLogDestFile.cpp \
|
||
|
$$PWD/QsLogDestFunctor.cpp
|
||
|
|
||
|
HEADERS += $$PWD/QsLogDest.h \
|
||
|
$$PWD/QsLog.h \
|
||
|
$$PWD/QsLogDestConsole.h \
|
||
|
$$PWD/QsLogLevel.h \
|
||
|
$$PWD/QsLogDestFile.h \
|
||
|
$$PWD/QsLogDisableForThisFile.h \
|
||
|
$$PWD/QsLogDestFunctor.h
|
||
|
|
||
|
OTHER_FILES += \
|
||
|
$$PWD/QsLogChanges.txt \
|
||
|
$$PWD/QsLogReadme.txt \
|
||
|
$$PWD/LICENSE.txt
|