我正在一个有多个级别的项目。就我个人而言,我是qbs的新手,而内部关于qbs的文档和示例并不多。
环境:
Qt5.6.1; Qt造物主4.01; Ubuntu 16.04; Qbs 1.5.1
这是项目的层次结构。在顶层,它具有project.qbs:
import qbs
import qbs.File
Project{
var binaries = [
"component1/component1.qbs",
"component2/component2.qbs",
"subpro/subpro.qbs", // <- 1. the project I am working on
"ourlib/ourlib.qbs", // <- 2. the library I am using
]
return binaries
}
subpro.qbs类似于:
import qbs
Project {
name: subpro
references:[
"app1/app1.qbs"
"app2/app2.qbs"
"myapp/myapp.qbs" //<- 3. the application I am working on
]
}
myapp.qbs就像:
import qbs
CppApplication{
type: "application"
name: "myapp"
Group{
name: "project-install"
fileTagsFilter: "application"
qbs.install: false
qbs.install: "bin"
}
Depends {name:"cpp"}
Depends {name:"blah1"}
Depends {name:"ourlib"}
cpp.libraryPaths:["path_of_lib3rdParty"] // 4. set the 3rd party lib path
cpp.staticLibraries:["lib3rdParty.a"] // 5. set the 3rd party lib name
files["myapp.cpp","f2"...]
}
最后是我们lib的qbs:
import qbs
DynamicLibrary{
name: "ourlib"
Group{
name: "project-install"
fileTagsFilter: "dynamiclibrary"
qbs.install: false
qbs.installDir: "debug"
}
Depends {name: "cpp"}
cpp.includePath:["..."]
cpp.libraryPaths:["path_of_lib3rdParty"] // 6. same as 4
cpp.staticLibraries:["lib3rdParty.a"] // 7. same as 5
}
当我在项目根文件夹下运行“qbs debug”时。
qbs显示:
linking ourlib.so
compiling myapp.cpp
ERROR: ...
/usr/bin/ld: cannot find -llib3rdParty_s.a
因此,基于错误消息,qbs无法构建myapp.cpp并尝试在myapp项目中找到lib3rdParty。我添加了4和5,仍然有相同的错误。似乎6和7是正确的,因为ourlib.so没有链接错误。我应该如何配置qbs以使构建过程正常工作?
另一个问题是关于关键字“引用”的。我可以在项目的任何级别引用其他qbs文件吗?它是如何工作的?我也对“Depends”有同样的疑问。
谢谢
ong
最佳答案
cpp.dynamicLibraries
和cpp.staticLibraries
属性获取要链接的库名称的列表,即没有lib
前缀或.so
后缀的库名称。
例如,您将使用:
cpp.libraryPaths: ["/home/r0ng/tools/myapp/libs/relic/lib"]
cpp.dynamicLibraries: ["relic"]
但是,由于您已经具有要链接的动态库的完整文件路径,因此您可以简单地传递完整文件路径,而无需完全指定
cpp.libraryPaths
,如下所示:cpp.dynamicLibraries: ["/home/r0ng/tools/myapp/libs/relic/lib/librelic.so"]
首选第二种方法,因为它指定了要链接的确切库,而不是依赖搜索路径,后者不一定会选择您期望的库类型(如果同时存在静态和动态版本)。
我承认应该更好地记录我们的
cpp.dynamicLibraries
和cpp.staticLibraries
属性,以解释其预期用途。关于
references
,是的,您可以引用任何文件路径,而不管其文件系统位置如何。关于
Depends
,该项目的name
属性指定要创建依赖项的产品或模块的名称。这样的产品或模块必须已经存在于您的项目树中,例如,由于使用qbsSearchPaths
或references
属性而被加载。关于c++ - 找不到带有库的Qt QBS项目设置编译错误,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/38318224/