mirror of
https://github.com/Serial-Studio/Serial-Studio.git
synced 2025-01-31 17:42:55 +08:00
39 lines
856 B
Prolog
39 lines
856 B
Prolog
QT -= gui
|
|
|
|
TARGET = CuteLogger
|
|
TEMPLATE = lib
|
|
|
|
DEFINES += CUTELOGGER_LIBRARY
|
|
|
|
INCLUDEPATH += ./include
|
|
|
|
SOURCES += src/Logger.cpp \
|
|
src/AbstractAppender.cpp \
|
|
src/AbstractStringAppender.cpp \
|
|
src/ConsoleAppender.cpp \
|
|
src/FileAppender.cpp \
|
|
src/RollingFileAppender.cpp
|
|
|
|
HEADERS += include/Logger.h \
|
|
include/CuteLogger_global.h \
|
|
include/AbstractAppender.h \
|
|
include/AbstractStringAppender.h \
|
|
include/ConsoleAppender.h \
|
|
include/FileAppender.h \
|
|
include/RollingFileAppender.h
|
|
|
|
win32 {
|
|
SOURCES += src/OutputDebugAppender.cpp
|
|
HEADERS += include/OutputDebugAppender.h
|
|
}
|
|
|
|
android {
|
|
SOURCES += src/AndroidAppender.cpp
|
|
HEADERS += include/AndroidAppender.h
|
|
}
|
|
|
|
unix {
|
|
target.path = /usr/lib
|
|
INSTALLS += target
|
|
}
|