-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathApp.pro
More file actions
57 lines (51 loc) · 1.7 KB
/
Copy pathApp.pro
File metadata and controls
57 lines (51 loc) · 1.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
################################################################################
# QBuildSystem
#
# Copyright(c) 2021 by Targoman Intelligent Processing <http://tip.co.ir>
#
# Redistribution and use in source and binary forms are allowed under the
# terms of BSD License 2.0.
################################################################################
APP_NAME=targomanAPI
include($$QBUILD_PATH/templates/innerAppConfigs.pri)
# +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-#
HEADERS += \
Server/RESTServer.h \
Server/APICache.hpp \
Server/StaticModule.h \
Server/appTargomanAPI.h \
Server/clsRedisConnector.h \
Server/clsRequestHandler.h \
Server/intfCacheConnector.hpp \
Server/RESTAPIRegistry.h \
Server/RESTServer.h \
Server/WebSocketServer.h \
Server/ServerConfigs.h \
Server/clsAPIObject.h \
Server/OpenAPIGenerator.h
# +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-#
SOURCES += \
$$BASE_PROJECT_PATH/3rdParty/QtCurl/libsrc/QtCUrl.cpp \
Server/ServerConfigs.cpp \
Server/StaticModule.cpp \
Server/clsAPIObject.cpp \
Server/clsRedisConnector.cpp \
Server/clsRequestHandler.cpp \
Server/WebSocketServer.cpp \
Server/RESTAPIRegistry.cpp \
Server/RESTServer.cpp \
Server/appTargomanAPI.cpp \
Server/OpenAPIGenerator.cpp \
Server/main.cpp
OTHER_FILES += \
../conf/api.conf \
migrations/db/* \
migrations/db/.dbdiff.dev_.cfg \
migrations/local/* \
migrations/local/.migrations
# +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-#
LIBS += -lTargomanAPIInterface
DISTFILES += \
conf/test.conf \
conf/api.server.conf
include($$BASE_PROJECT_PATH/pch/precompiledHeader.pri)