我现在正在使用cmake
构建我的项目,并希望将来迁移到qbs
。我有一些来自github的开源子模块,它们目前使用cmake
构建,并使用cmake
' s add_subdirectory
包含在我的项目中。
我尝试过研究,但在qbs中找不到add_subdirectory
的替代品。
我不认为将所有子模块构建系统从cmake
迁移到qbs
是一个好主意,因为这意味着我必须迁移子模块或sub子模块。子模块也是:)
有任何帮助吗?谢谢!
答案 0 :(得分:0)
要引入使用其他工具构建的项目,您需要某种包装器。例如,假设您的cmake子项目是一个库,您可以写这个(未经测试):
Product {
type: ["dynamiclibrary"]
Group {
files: ["subdir/CMakeLists.txt"]
fileTags: ["cmake_project"]
}
Group {
files: ["subdir/*"]
excludedFiles: ["subdir/CMakeLists.txt"]
fileTags: ["cmake_sources"]
}
Rule {
inputs: ["cmake_project"]
auxiliaryInputs: ["cmake_sources"]
Artifact {
filePath: ... // Whatever cmake produces
fileTags: ["dynamiclibrary"]
}
prepare: {
var cmd = new Command("cmake", [/*cmake arguments*/]);
cmd.description = "building cmake project xyz";
cmd.workingDirectory = product.sourceDirectory + "/subdir";
return [cmd];
}
}
}
您应该调整cmake调用,以便生成的二进制文件最终位于qbs的构建目录中。 如果事实证明这是一个合理的抽象级别,那么将来可能会有这种方便的功能。