2025-07-23 01:35:14 +08:00
|
|
|
TEMPLATE = subdirs
|
|
|
|
|
|
2026-01-27 20:43:12 +08:00
|
|
|
# 定义子项目(使用简短名称便于设置依赖)
|
|
|
|
|
VrCommon.file = ../VrCommon/VrCommon.pro
|
|
|
|
|
VrUtils.file = ../VrUtils/VrUtils.pro
|
|
|
|
|
VrNets.file = ../VrNets/VrNets.pro
|
|
|
|
|
Module.file = ../Module/Module.pro
|
|
|
|
|
Device.file = ../Device/Device.pro
|
|
|
|
|
AppUtils.file = ../AppUtils/AppUtils.pro
|
2026-02-01 14:51:16 +08:00
|
|
|
DataUtils.file = ../DataUtils/DataUtils.pro
|
2026-01-27 20:43:12 +08:00
|
|
|
Tools.file = ../Tools/Tools.pro
|
2026-02-01 14:51:16 +08:00
|
|
|
Robot.file = ../Robot/Robot.pro
|
|
|
|
|
App.file = ../App/App.pro
|
2026-01-03 22:28:04 +08:00
|
|
|
|
2026-01-27 20:43:12 +08:00
|
|
|
SUBDIRS += VrCommon
|
|
|
|
|
SUBDIRS += VrUtils
|
|
|
|
|
SUBDIRS += VrNets
|
|
|
|
|
SUBDIRS += Module
|
|
|
|
|
SUBDIRS += Device
|
|
|
|
|
SUBDIRS += AppUtils
|
2026-02-01 14:51:16 +08:00
|
|
|
SUBDIRS += DataUtils
|
|
|
|
|
SUBDIRS += Robot
|
|
|
|
|
SUBDIRS += App
|
2025-10-24 23:19:44 +08:00
|
|
|
|
2026-01-27 20:43:12 +08:00
|
|
|
SUBDIRS += Tools
|
|
|
|
|
|
|
|
|
|
# 设置依赖关系
|
|
|
|
|
VrUtils.depends = VrCommon
|
|
|
|
|
VrNets.depends = VrUtils
|
|
|
|
|
Module.depends = VrUtils
|
2026-02-01 14:51:16 +08:00
|
|
|
Device.depends = VrUtils AppUtils
|
2026-01-27 20:43:12 +08:00
|
|
|
AppUtils.depends = VrUtils Module
|
2026-02-01 14:51:16 +08:00
|
|
|
App.depends = VrCommon VrUtils VrNets Module Device AppUtils DataUtils
|
|
|
|
|
Tools.depends = Module VrUtils Robot
|
2026-01-27 20:43:12 +08:00
|
|
|
|
2025-10-12 16:46:46 +08:00
|
|
|
# Test 测试
|
|
|
|
|
# SUBDIRS += ../Test/Test.pro
|