9

我试图提醒自己一些 C++,并了解 Qt。

我在 Windows 上工作。我已经安装了 Qt (5.1.0)、MinGW (g++ 4.6.2)、Gnu Make (3.81)。

我正在尝试编译一个简单的 Qt 应用程序。最基本的情况是这样的:

#include <QtWidgets>
#include <QtGui>

int main (int argc, char* argv[]) {               
    QApplication app(argc, argv);                  
    QTextStream cout(stdout);                               
    return EXIT_SUCCESS;
}

项目文件为:

TEMPLATE = app
TARGET = example1
INCLUDEPATH += .

# Input
SOURCES += fac1.cpp
QT += gui widgets core

当我跑

qmake

它生成 Makefile。

但后来make我得到了这个:

C:\src\early-examples\example1>make
make -f Makefile.Release
make[1]: Entering directory `C:/src/early-examples/example1'
g++ -Wl,-s -Wl,-subsystem,console -mthreads -o release\example1.exe release/fac1.o  -LC:\Qt\Qt5.1.0\\5.1.0\msvc2012_64\lib -lQt5Widgets -lQt5Gui -lQt5Core -llibEGL -llibGLESv2 -lgdi32 -luser32
release/fac1.o:fac1.cpp:(.text.startup+0x2e): undefined reference to `_imp___ZN12QApplicationC1ERiPPci'
release/fac1.o:fac1.cpp:(.text.startup+0x37): undefined reference to `_imp___ZN12QApplicationD1Ev'
collect2: ld returned 1 exit status
make[1]: *** [release\example1.exe] Error 1
make[1]: Leaving directory `C:/src/early-examples/example1'
make: *** [release] Error 2

你能告诉我有什么问题吗?

4

2 回答 2

11

这里的问题是您似乎正在为您的 mingw 构建使用 Visual Studio 2012 库。您需要链接到 mingw 编译的 Qt。

于 2013-08-15T21:01:52.523 回答
0

将“greaterThan(QT_MAJOR_VERSION, 4): QT += widgets”添加到您的 .pro 文件中

于 2013-11-08T04:24:03.887 回答