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.
 
 

22 lines
478 B

TEMPLATE = lib
CONFIG += c++17
CONFIG += staticlib
TARGET = model
HEADERS += \
include/LogWarehouse.h \
include/parser/JsonParseConfig.h \
include/parser/JsonParser.h \
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 += \
src/LogWarehouse.cpp \
src/parser/JsonParser.cpp
INCLUDEPATH += $$PWD/include