如何将DLL添加到Qbs项目中

时间:2015-02-08 14:35:09

标签: qt dll build qbs

我已经生成了一个DLL文件。

我有一个有效的Qbs项目。

如何将DLL文件添加到我的项目中,以便我可以访问库的功能?

1 个答案:

答案 0 :(得分:3)

如果您想链接到包含文件theLibrary.libtheLibrary.dll的图书馆,可以尝试:

import qbs 1.0

Application {
     name: "AppName"
     files: "main.cpp"
     Depends { name: "cpp" }

     cpp.includePaths: [".","Path/To/include"]

     cpp.libraryPaths: ["Path/To/lib"]

     cpp.dynamicLibraries: "theLibrary"
}

在此处指定库包含路径,库路径和库名称。