2

尝试使用 qbs 收集 qutim 0.3.2 (qt5) 项目 ( https://github.com/euroelessar/qutim ):

[22:30:49][anton@arch-Laptop: qutim]$ qbs build profile:qt5
No build graph exists yet for this configuration.
Resolving project for configuration qt5-debug
ERROR: /home/anton/qutim/core/3rdparty/k8json/k8json.qbs:8:5 Module qt/core could not be loaded.

从 aur (qbs-git) 编译的 qbs

Archlinux x64

4

1 回答 1

0

您应该在 .qbs 文件的依赖项中使用大写字母写“Qt”:

Depends { name: "Qt.core" }

或者用很少的依赖模块这样写是很方便的:

Depends { name: "Qt"; submodules: ["core", "gui"] } 
于 2013-11-19T04:55:18.413 回答