0

我有几个共享公共类的项目,因此我将通过将项目布局拆分为作为静态库实现的组件来更改项目布局以反映这些依赖关系。

现在我创建了一个模块“io”,它使用一个导出块来导出它的包含路径。该模块由“核心”依赖。'Core' 本身然后由'app' 依赖,到目前为止没有什么特别的。

导出项目的文档说它的属性是可传递的,但是在编译包含来自核心的应用程序时,我从编译器收到了几个错误。查看编译器语句,io导出的包含路径并没有列在包含路径中。在应用程序中直接将依赖项添加到 io 时,一切正常。

我是错误地使用了 Export/Depends 对还是我的整体布局不好。

我更改了 Qbs 的 app-and-lib 示例以反映我的布局以进行澄清。

app
|- main.cpp

lib1
|- lib.cpp

lib2
|- lib.cpp
|- Test.h


=== app-and-lib.qbs
import qbs 1.0

Project {
    references: [
        "app/app.qbs",
        "lib1/lib1.qbs",
        "lib2/lib2.qbs"
    ]
}

=== app.qbs
import qbs 1.0

Product {
    type: "application"
    name : "app-and-lib-app"
    files : [ "main.cpp" ]
    Depends { name: "cpp" }
    Depends { name: "lib1" }
}

=== lib1.qbs
import qbs 1.0

Product {
    type: "staticlibrary"
    name: "lib1"
    files: [ "lib.cpp" ]
    cpp.defines: ['CRUCIAL_DEFINE']
    Depends { name: 'cpp' }
    Depends { name: "lib2" }
}

=== lib2.qbs
import qbs 1.0

Product {
    type: "staticlibrary"
    name: "lib2"
    files: [
        "Test.h",
        "lib.cpp",
    ]
    cpp.defines: ['CRUCIAL_DEFINE']
    Depends { name: 'cpp' }

    Export {
      Depends { name: "cpp" }
      cpp.includePaths: "."
    }
}

=== lib.cpp
#include <stdio.h>
#include "Test.h"


#ifndef CRUCIAL_DEFINE
#   error CRUCIAL_DEFINE not defined
#endif

int bla()
{
    puts("Hello World!");
    return 2;
}

=== main.cpp
#include <stdio.h>
#include "Test.h" // Error cannot found Test.h

int bla();
int main()
{
  Test t = new Test();
    return bla();
}
4

1 回答 1

0

通过 IRC 到 Qbs Jira 并从开发人员那里得到答案,这是文档中的错误。要导出依赖项,必须导出它,所以 lib1.qbs 需要像这样扩展

Exports { 
  Depends { name: "lib2" }
}

跟进:https ://bugreports.qt.io/browse/QBS-928

于 2016-02-03T19:59:47.257 回答