mirror of
https://github.com/QuasarApp/Heart.git
synced 2025-05-01 12:09:43 +00:00
123 lines
3.3 KiB
Prolog
123 lines
3.3 KiB
Prolog
#
|
|
# Copyright (C) 2018 - 2019 QuasarApp.
|
|
# Distributed under the lgplv3 software license, see the accompanying
|
|
# Everyone is permitted to copy and distribute verbatim copies
|
|
# of this license document, but changing it is not allowed.
|
|
#
|
|
|
|
#-------------------------------------------------
|
|
#
|
|
# Project created by QtCreator 2019-02-12T11:08:54
|
|
#
|
|
#-------------------------------------------------
|
|
|
|
QT -= gui
|
|
QT += network sql concurrent
|
|
|
|
CONFIG += c++14
|
|
TARGET = NetworkProtocol
|
|
TEMPLATE = lib
|
|
|
|
DEFINES += NETWORKPROTOCOL_LIBRARY
|
|
|
|
# The following define makes your compiler emit warnings if you use
|
|
# any feature of Qt which has been marked as deprecated (the exact warnings
|
|
# depend on your compiler). Please consult the documentation of the
|
|
# deprecated API in order to know how to port your code away from it.
|
|
DEFINES += QT_DEPRECATED_WARNINGS
|
|
|
|
# You can also make your code fail to compile if you use deprecated APIs.
|
|
# In order to do so, uncomment the following line.
|
|
# You can also select to disable deprecated APIs only up to a certain version of Qt.
|
|
#DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0
|
|
|
|
CONFIG(release, debug|release): {
|
|
DESTDIR = $$PWD/build/release
|
|
|
|
} else {
|
|
DESTDIR = $$PWD/build/debug
|
|
}
|
|
|
|
SOURCES += \
|
|
DataPacakages/abstractdata.cpp \
|
|
DataPacakages/availabledata.cpp \
|
|
DataPacakages/availabledatarequest.cpp \
|
|
DataPacakages/badrequest.cpp \
|
|
DataPacakages/dbobject.cpp \
|
|
DataPacakages/dbobjectquery.cpp \
|
|
DataPacakages/ratingtable.cpp \
|
|
DataPacakages/request.cpp \
|
|
DataPacakages/transportdata.cpp \
|
|
DataPacakages/userdata.cpp \
|
|
DataPacakages/userdatarequest.cpp \
|
|
DataPacakages/userrecord.cpp \
|
|
DataPacakages/websocket.cpp \
|
|
DataPacakages/websocketsubscriptions.cpp \
|
|
accesstoken.cpp \
|
|
client.cpp \
|
|
databaseaddress.cpp \
|
|
dbaddress.cpp \
|
|
dbobjectsfactory.cpp \
|
|
dbtablebase.cpp \
|
|
abstractnode.cpp \
|
|
abstractnodeinfo.cpp \
|
|
asyncsqldbwriter.cpp \
|
|
basenode.cpp \
|
|
basenodeinfo.cpp \
|
|
header.cpp \
|
|
iobjectprovider.cpp \
|
|
networkprotocol.cpp \
|
|
package.cpp \
|
|
ratingusernode.cpp \
|
|
sqldbcache.cpp \
|
|
sqldbwriter.cpp \
|
|
streambase.cpp \
|
|
websocketcontroller.cpp \
|
|
workstate.cpp
|
|
|
|
|
|
HEADERS += \
|
|
DataPacakages/abstractdata.h \
|
|
DataPacakages/availabledata.h \
|
|
DataPacakages/availabledatarequest.h \
|
|
DataPacakages/badrequest.h \
|
|
DataPacakages/dbobject.h \
|
|
DataPacakages/dbobjectquery.h \
|
|
DataPacakages/ratingtable.h \
|
|
DataPacakages/request.h \
|
|
DataPacakages/transportdata.h \
|
|
DataPacakages/userdata.h \
|
|
DataPacakages/userdatarequest.h \
|
|
DataPacakages/userrecord.h \
|
|
DataPacakages/websocket.h \
|
|
DataPacakages/websocketsubscriptions.h \
|
|
accesstoken.h \
|
|
client.h \
|
|
databaseaddress.h \
|
|
dbaddress.h \
|
|
dbobjectsfactory.h \
|
|
dbtablebase.h \
|
|
abstractnode.h \
|
|
abstractnodeinfo.h \
|
|
asyncsqldbwriter.h \
|
|
basenode.h \
|
|
basenodeinfo.h \
|
|
config.h \
|
|
header.h \
|
|
iobjectprovider.h \
|
|
networkprotocol.h \
|
|
networkprotocol_global.h \
|
|
package.h \
|
|
ratingusernode.h \
|
|
sqldbcache.h \
|
|
sqldbwriter.h \
|
|
streambase.h \
|
|
websocketcontroller.h \
|
|
workstate.h \
|
|
defines.h
|
|
|
|
include($$PWD/NetworkProtocolIncludes.pri)
|
|
|
|
RESOURCES += \
|
|
ProtockolResusces.qrc
|