Log Viewer
You can not 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
478 B

TEMPLATE = lib
6 months ago
CONFIG += c++17
CONFIG += staticlib
TARGET = model
6 months ago
HEADERS += \
include/LogWarehouse.h \
6 months ago
include/parser/JsonParseConfig.h \
include/parser/JsonParser.h \
6 months ago
include/type/Log.h \
include/type/ELogLevel.h \
include/type/MessagePart.h \
include/type/LoggedObjectDto.h \
include/type/SourceLocationDto.h \
include/parser/IParser.h
SOURCES += \
6 months ago
src/LogWarehouse.cpp \
src/parser/JsonParser.cpp
INCLUDEPATH += $$PWD/include