0

我想要一个模块,它将导出所有需要的依赖项,如包含路径、库路径,并将安装所需的运行时库。

Module {
    Depends { name: "cpp" }
    property path libLocation: ""
    cpp.dynamicLibraries: [
        "mylib"
    ]
    cpp.staticLibraries: [
        "mylib"
    ]
    cpp.includePaths: [
        libLocation + "include/",
    ]
    cpp.libraryPaths: [
        libLocation + "lib/",
    ]
    Group {
        name: "runtime libraries"
        qbs.install: true
        prefix: 'lib_location/'
        files: ["*.dll"]
    }
}

一切正常,但未安装文件。有可能这样做吗?

更新 1

文件正确安装:

  • 如果直接指定完整或相对路径(作为文字)
  • 通过使用项目的属性。

工作解决方案:

Module {
    ...
    Group {
        name: "runtime libraries"
        prefix: "D:/Projects/MyProject/Dependencies/SDL2pp/mingw/bin/" // works!
        //prefix: project.dependenciesPath + "SDL2pp/mingw/bin/" // also works!

        files: "*.dll"
        qbs.install: true
    }
}

但是当我尝试使用模块的属性时,它说:“参考错误:找不到变量:...”

Module {
    ...
    property bool installDlls: true
    property string libPath:  ""
    Group {
        name: "runtime libraries"
        prefix: libPath // Can't find variable
        files: "*.dll"
        qbs.install: installDlls // Can't find variable
    }
}

此外,如果 FileInfo 模块用于构建路径,则不起作用。组外路径得到了正确解决。

import qbs
import qbs.FileInfo

Module {
    ...
    Group {
        name: "runtime libraries"
        prefix: FileInfo.joinPaths(project.dependenciesPaths, './SDL2pp/mingw/bin/') // silently not works
        files: "*.dll"
        qbs.install: true
    }
}

结论
我找到了 2 个解决方案:

  • 将路径编码为文字。便携解决方案
  • 使用项目的属性。便携,但取决于项目项目。

我不知道为什么不能在组内使用模块的属性。是否有一些限制或这是一个错误?

4

1 回答 1

1

迟到但发现这篇文章试图做同样的事情,也许它可以帮助其他人。发现在组内使用模块的属性可以通过给模块一个 id 并使用这样的 id 引用属性来完成

Module { id: mymodule ... property bool installDlls: true property string libPath: "" Group { name: "runtime libraries" prefix: mymodule.libPath files: "*.dll" qbs.install: mymodule.installDlls } }

我正在使用 Qbs 1.12.1

于 2018-10-19T08:09:52.920 回答