Qt的路径是什么,Qt在Ubuntu上的配置文件的路径是什么



我正在遵循此文档进行部署。它需要我指定/path/to/Qt/path/to/Qt/configure。我无法在机器上找到通往QT的路径。

我正在使用Ubuntu 17,我使用apt install qt5-default安装了QT。任何想知道在Ubuntu上可以在哪里找到它,或者如何找到它?

编辑:我在/usr/lib/x86_64-linux-gnu/qt5/上找到了qt5,但没有configure文件。

您可以从git中获取QT源,并从GIT构建QT 5。您还可以下载源tarball,例如QT 5.10.1或从此处选择其他一些版本。

将源提取到您喜欢的位置,例如/home/user/qt。因此,您的来源在/home/user/qt/qt-everywerher-src-5.10.1中。为了保持源清洁,创建单独的构建和安装dirs,例如/home/user/qt/build and/home/user/qt/install。

转到build dir:

cd /home/user/qt/build

从构建dir运行配置,并使用-prefix给予安装dir:

../qt-everywhere-src-5.10.1/configure -static -prefix /home/<user>/qt/install <other parameters>

其中"其他参数"为例如

-release -nomake examples -nomake tests -skip qtwebengine

(跳过QTWebengine,如果您不需要节省大量的构建时间(

相关内容

  • 没有找到相关文章