如何在 qbs 中安装通用二进制工件?

How to install universal binary artifacts in qbs?

这是我的qbs项目:

Project {
    StaticLibrary {
        name: "targetLib"
        files: "main.cpp"

        bundle.isBundle: false

        multiplexByQbsProperties: "architectures"
        aggregate: true

        Group {
            fileTagsFilter: "bundle.content"
            qbs.install: true
            qbs.installSourceBase: buildDirectory
        }

        Depends { name: "nawesome" }
        Depends { name: "cpp" }
    }
}

在构建时,我通过设置传递配置文件 属性 cpp.architectures: ["arm64", "x86_64"].

据我了解,多路复用以这种方式工作:一个针对每个体系结构构建,另一个用于聚合以构建通用二进制文件。聚合设置为它的工件标签“bundle.content”,但它没有安装。

我不需要安装非通用二进制文件,所以我需要一些方法来消除它们。现在我找到的唯一方法是:

        Group {
            condition: type.contains("bundle.content")
            fileTagsFilter: "staticlibrary"
            qbs.install: true
            qbs.installSourceBase: buildDirectory
        }

但我觉得这不是个好东西。

从 qbs 1.19 开始,只需在 StaticLibrary 项目上设置“install: true”(就像它已经为非多路复用产品所做的那样),这应该可以透明地工作。请参阅 https://codereview.qt-project.org/c/qbs/qbs/+/339928 了解那里如何处理多路复用。 但是,如果您的解决方法能够解决问题,那么您也可以在此之前继续使用它。