Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
简而言之:是否可以使Rule项目(或类似项目)在install步骤中执行?
Rule
install
如此处所述,我在通过 item.xml 安装文件时遇到问题Group。一个简单的Rule脚本可能会做,但它必须在某个时候运行,最好是在安装期间。
Group
我相信您所链接的问题已经回答了您的主要问题。
规则不能在安装时运行。但是,它们可以生成通过规则分配的文件标签安装的文件。
例如:
Group { fileTagsFilter: ["someruleoutput"] qbs.install: true qbs.installDir: "xyz" }
这将导致您的产品或其依赖模块中的规则生成的带有“someruleoutput”标签的任何文件都安装到“xyz”目录中。