ZoomPipeline_FuncSvr.pro 1.5 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
    smartlink/st_clientnode_applayer.cpp \
丁劲犇's avatar
丁劲犇 已提交
29 30
    cluster/zp_clusterterm.cpp \
    dialogaddressinput.cpp
丁劲犇's avatar
丁劲犇 已提交
31 32 33 34 35

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

丁劲犇's avatar
丁劲犇 已提交
50 51
FORMS    += zpmainframe.ui \
    dialogaddressinput.ui
丁劲犇's avatar
丁劲犇 已提交
52 53 54

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