我已经在运行 ubuntu 的 pc 上的 qt creator 中编写了代码。在此之后,当我尝试使用 ubuntu 在另一台电脑上运行相同的代码时,它无法正常工作。
错误是:
MainWindow: no such file or directory
QtGui/QApplication: no such file or directory
我已经在运行 ubuntu 的 pc 上的 qt creator 中编写了代码。在此之后,当我尝试使用 ubuntu 在另一台电脑上运行相同的代码时,它无法正常工作。
错误是:
MainWindow: no such file or directory
QtGui/QApplication: no such file or directory
为了让 Qt 应用程序在 Ubuntu 机器上编译,您需要几个包:
g++
、GNU C++ 编译器make
等假设项目正在使用 Qmake,在包含该
.pro
文件的目录中运行以下命令:Qmake(默认情况下)将读取您的项目文件并为您的平台生成适当的 makefile。第二个命令将从 makefile 构建应用程序。