ZoomPipeline_FuncSvr.pro 1.3 KB
Newer Older
丁劲犇's avatar
丁劲犇 已提交
1 2 3 4 5 6
#-------------------------------------------------
#
# Project created by QtCreator 2013-12-13T08:12:31
#
#-------------------------------------------------

7
QT       += core gui network sql
丁劲犇's avatar
丁劲犇 已提交
8 9 10 11 12 13 14 15 16 17 18 19

greaterThan(QT_MAJOR_VERSION, 4): QT += widgets

TARGET = ZoomPipeline_FuncSvr
TEMPLATE = app


SOURCES += main.cpp\
        zpmainframe.cpp \
    network/zp_tcpserver.cpp \
    network/zp_nettransthread.cpp \
    network/zp_netlistenthread.cpp \
20 21
    network/zp_net_threadpool.cpp \
    pipeline/zp_pipeline.cpp \
22
    smartlink/st_client_table.cpp \
23
    pipeline/zp_plworkingthread.cpp \
24
    pipeline/zp_pltaskbase.cpp \
25
    database/databaseresource.cpp \
丁劲犇's avatar
丁劲犇 已提交
26 27
    smartlink/st_clientnode_basetrans.cpp \
    smartlink/st_clientnode_app_imp.cpp \
28 29
    smartlink/st_clientnode_applayer.cpp \
    cluster/zp_clusterterm.cpp
丁劲犇's avatar
丁劲犇 已提交
30 31 32 33 34

HEADERS  += zpmainframe.h \
    network/zp_tcpserver.h \
    network/zp_nettransthread.h \
    network/zp_netlistenthread.h \
35 36
    network/zp_net_threadpool.h \
    pipeline/zp_pipeline.h \
37
    smartlink/st_client_table.h \
38
    pipeline/zp_plworkingthread.h \
39
    smartlink/st_message.h \
40
    pipeline/zp_pltaskbase.h \
41
    database/databaseresource.h \
丁劲犇's avatar
丁劲犇 已提交
42 43
    smartlink/st_msg_applayer.h \
    smartlink/st_clientnode_basetrans.h \
44 45
    smartlink/st_clientnode_applayer.h \
    cluster/zp_clusterterm.h
丁劲犇's avatar
丁劲犇 已提交
46 47

FORMS    += zpmainframe.ui
丁劲犇's avatar
丁劲犇 已提交
48 49 50

RESOURCES += \
    resource.qrc
丁劲犇's avatar
丁劲犇 已提交
51