GrabBag/Module/Module.pro
2026-06-08 17:36:13 +08:00

30 lines
843 B
Prolog
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# Module.pro
# 模块总工程文件
TEMPLATE = subdirs
SUBDIRS += \
ShareMem \
BinocularMarkReceiver \
ModbusTCPServer \
ModbusTCPClient \
AuthModule \
HandEyeCalib \
ChessboardDetector \
FFMediaStream \
ZeroMQClient \
ZeroMQServer \
ZeroMQPubSub \
WDRemoteReceiver
# 设置依赖关系
# 注意SUBDIRS 必须用短名目录名注册qmake 会自动查找 子目录/同名.pro
# 这样 .depends 才能生效若写成 "WDRemoteReceiver/WDRemoteReceiver.pro" 路径形式,
# 该依赖不会被 qmake 关联make -j 并行编译时会出现 "cannot find -lZeroMQClient"
# WDRemoteReceiver 是动态库,链接 ZeroMQClient / ZeroMQPubSub 静态库,必须先构建它们
WDRemoteReceiver.depends = ZeroMQClient ZeroMQPubSub
win32-msvc {
SUBDIRS += CloudShow
}