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