Heart/NetworkProtocol/NetworkProtocol.pro

123 lines
3.3 KiB
Prolog
Raw Normal View History

2019-10-08 13:03:13 +03:00
#
# 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
2019-10-26 20:53:47 +03:00
QT += network sql concurrent
2019-10-08 13:03:13 +03:00
CONFIG += c++14
2019-11-09 13:49:14 +03:00
TARGET = NetworkProtocol
2019-10-08 13:03:13 +03:00
TEMPLATE = lib
2019-11-09 13:49:14 +03:00
DEFINES += NETWORKPROTOCOL_LIBRARY
2019-10-08 13:03:13 +03:00
# 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 += \
2019-10-20 15:53:20 +03:00
DataPacakages/abstractdata.cpp \
2019-11-02 20:38:13 +03:00
DataPacakages/availabledata.cpp \
DataPacakages/availabledatarequest.cpp \
2019-10-20 12:53:17 +03:00
DataPacakages/badrequest.cpp \
2019-10-26 20:53:47 +03:00
DataPacakages/dbobject.cpp \
2019-11-29 15:32:30 +03:00
DataPacakages/dbobjectquery.cpp \
2019-11-23 23:18:56 +03:00
DataPacakages/ratingtable.cpp \
DataPacakages/request.cpp \
2019-11-22 22:04:00 +03:00
DataPacakages/transportdata.cpp \
2019-10-29 22:05:47 +03:00
DataPacakages/userdata.cpp \
2019-11-02 20:38:13 +03:00
DataPacakages/userdatarequest.cpp \
2019-11-29 15:32:30 +03:00
DataPacakages/userrecord.cpp \
2019-11-27 17:24:08 +03:00
DataPacakages/websocket.cpp \
DataPacakages/websocketsubscriptions.cpp \
2019-11-07 16:13:56 +03:00
accesstoken.cpp \
2019-11-07 20:49:06 +03:00
client.cpp \
2019-11-07 16:13:56 +03:00
databaseaddress.cpp \
2019-11-27 17:24:08 +03:00
dbaddress.cpp \
2019-11-03 16:03:00 +03:00
dbobjectsfactory.cpp \
dbtablebase.cpp \
2019-10-20 12:53:17 +03:00
abstractnode.cpp \
abstractnodeinfo.cpp \
2019-10-29 18:31:01 +03:00
asyncsqldbwriter.cpp \
2019-10-21 18:09:25 +03:00
basenode.cpp \
2019-10-20 12:53:17 +03:00
basenodeinfo.cpp \
2019-10-20 15:53:20 +03:00
header.cpp \
2019-10-27 12:08:16 +03:00
iobjectprovider.cpp \
2019-11-09 13:49:14 +03:00
networkprotocol.cpp \
2019-10-20 20:30:17 +03:00
package.cpp \
ratingusernode.cpp \
2019-10-22 17:59:56 +03:00
sqldbcache.cpp \
sqldbwriter.cpp \
2019-10-22 21:51:21 +03:00
streambase.cpp \
2019-11-27 17:24:08 +03:00
websocketcontroller.cpp \
2019-10-20 20:30:17 +03:00
workstate.cpp
2019-10-08 13:03:13 +03:00
HEADERS += \
2019-10-20 15:53:20 +03:00
DataPacakages/abstractdata.h \
2019-11-02 20:38:13 +03:00
DataPacakages/availabledata.h \
DataPacakages/availabledatarequest.h \
2019-10-20 12:53:17 +03:00
DataPacakages/badrequest.h \
2019-10-26 20:53:47 +03:00
DataPacakages/dbobject.h \
2019-11-29 15:32:30 +03:00
DataPacakages/dbobjectquery.h \
2019-11-23 23:18:56 +03:00
DataPacakages/ratingtable.h \
DataPacakages/request.h \
2019-11-22 22:04:00 +03:00
DataPacakages/transportdata.h \
2019-10-29 22:05:47 +03:00
DataPacakages/userdata.h \
2019-11-02 20:38:13 +03:00
DataPacakages/userdatarequest.h \
2019-11-29 15:32:30 +03:00
DataPacakages/userrecord.h \
2019-11-27 17:24:08 +03:00
DataPacakages/websocket.h \
DataPacakages/websocketsubscriptions.h \
2019-11-07 16:13:56 +03:00
accesstoken.h \
2019-11-07 20:49:06 +03:00
client.h \
2019-11-07 16:13:56 +03:00
databaseaddress.h \
2019-11-27 17:24:08 +03:00
dbaddress.h \
2019-11-03 16:03:00 +03:00
dbobjectsfactory.h \
dbtablebase.h \
2019-10-20 12:53:17 +03:00
abstractnode.h \
abstractnodeinfo.h \
2019-10-29 18:31:01 +03:00
asyncsqldbwriter.h \
2019-10-21 18:09:25 +03:00
basenode.h \
2019-10-20 12:53:17 +03:00
basenodeinfo.h \
2019-10-20 15:53:20 +03:00
config.h \
header.h \
2019-10-27 12:08:16 +03:00
iobjectprovider.h \
2019-11-09 13:49:14 +03:00
networkprotocol.h \
networkprotocol_global.h \
2019-10-20 20:30:17 +03:00
package.h \
ratingusernode.h \
2019-10-22 17:59:56 +03:00
sqldbcache.h \
sqldbwriter.h \
2019-10-22 21:51:21 +03:00
streambase.h \
2019-11-27 17:24:08 +03:00
websocketcontroller.h \
2019-12-06 13:37:11 +03:00
workstate.h \
defines.h
2019-10-08 13:03:13 +03:00
2019-11-09 13:49:14 +03:00
include($$PWD/NetworkProtocolIncludes.pri)
2019-10-30 17:58:38 +03:00
RESOURCES += \
ProtockolResusces.qrc