我想要一个模块,它将导出所有需要的依赖项,如包含路径、库路径,并将安装所需的运行时库。
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 个解决方案:
- 将路径编码为文字。便携解决方案
- 使用项目的属性。便携,但取决于项目项目。
我不知道为什么不能在组内使用模块的属性。是否有一些限制或这是一个错误?