如何提供Qt安装路径进行配置?
How to provide Qt installation path to configure?
我从 github 获得了源代码。它是由Qt编写的,我已经从Qt官网安装了Qt。但是当我运行./configure
。它说 error: cannot find QtGui
。我能做什么?我不想通过 apt-get
重复安装。我在 .zshrc 中设置了 LD_LIBRARY_PATH
。不行。
通常的方式是通过apt-get
安装依赖。如果是手动安装,需要自己解决路径问题
既然您选择了黑暗路径,现在您需要手动通知 configure
您的 QT 包含文件和库所在的位置:
export CPPFLAGS='-I/qt/path/include'
export LDFLAGS='-L/qt/path/lib/'
./configure
One-liner:
env CPPFLAGS='-I/qt/path/include' LDFLAGS='-L/qt/path/lib/' ./configure
更多信息是 here。
我从 github 获得了源代码。它是由Qt编写的,我已经从Qt官网安装了Qt。但是当我运行./configure
。它说 error: cannot find QtGui
。我能做什么?我不想通过 apt-get
重复安装。我在 .zshrc 中设置了 LD_LIBRARY_PATH
。不行。
通常的方式是通过apt-get
安装依赖。如果是手动安装,需要自己解决路径问题
既然您选择了黑暗路径,现在您需要手动通知 configure
您的 QT 包含文件和库所在的位置:
export CPPFLAGS='-I/qt/path/include'
export LDFLAGS='-L/qt/path/lib/'
./configure
One-liner:
env CPPFLAGS='-I/qt/path/include' LDFLAGS='-L/qt/path/lib/' ./configure
更多信息是 here。