2015-12-31 48 views
0

當建立MAME我得到這個錯誤:QtWidgets/QApplication的不使用.pro文件

make 
GCC 4.9.2 detected 
Compiling src/osd/modules/debugger/debugqt.cpp... 
../../../../../src/osd/modules/debugger/debugqt.cpp:20:30: fatal error: QtWidgets/QApplication: No such file or directory 
#include <QtWidgets/QApplication> 
           ^
compilation terminated. 
qtdbg_sdl.make:361: recipe for target '../../../../linux_gcc/obj/x64/Release/qtdbg_sdl/src/osd/modules/debugger/debugqt.o' failed 
make[2]: *** [../../../../linux_gcc/obj/x64/Release/qtdbg_sdl/src/osd/modules/debugger/debugqt.o] Error 1 
Makefile:16: recipe for target 'qtdbg_sdl' failed 
make[1]: *** [qtdbg_sdl] Error 2 
makefile:1003: recipe for target 'linux_x64' failed 
make: *** [linux_x64] Error 2 

如何解決這個錯誤沒有一個.pro文件,因爲我無法找到一個任何地方。

回答

0

這是一個Qt應用程序的構建過程:

~$ qmake -project /*this makes .pro file*/ 
~$ qmake -makefile /*this creates makefile*/ 
~$ make 

你總是需要以創建正確的makefile

~$ echo "happy qt coding" 
+1

這個答案是錯的第一個運行的qmake。您不需要qmake或.pro文件來構建qt應用程序。 – JBentley

+1

例如,請參閱[這裏](http://stackoverflow.com/q/3632038/1227469)。唯一(可能)的要求是moc,它生成標準的C++,你可以通過任何編譯器(或構建工具)運行 – JBentley

+0

那麼,編譯一個簡單的hello世界qt應用程序的命令是什麼? – Poulad