c++ - 如何在 MSYS2 中通过 CMake 构建 C++ Qt5 应用程序

标签 c++ cmake qt5 msys2

我有一个 c++ qt5 “hello world” cmake 项目; 这是我的 main.cpp 和 CMakeLists.txt 文件:

#include <QApplication>
#include <QWidget>
#include <QGridLayout>
#include <QLabel>

int main(int argc, char **argv)
{
    QApplication app(argc, argv);

    QWidget widget;
    widget.resize(640, 480);
    widget.setWindowTitle("Hello, world!!!");

    QGridLayout *gridLayout = new QGridLayout(&widget);

    QLabel * label = new QLabel("Hello, world!!!");
    label->setAlignment(Qt::AlignVCenter | Qt::AlignHCenter);
    gridLayout->addWidget(label);

    widget.show();

    return app.exec();
}
cmake_minimum_required(VERSION 3.1.0)

project(helloworld)

set(CMAKE_AUTOMOC ON)
set(CMAKE_AUTORCC ON)
set(CMAKE_AUTOUIC ON)

if(CMAKE_VERSION VERSION_LESS "3.7.0")
    set(CMAKE_INCLUDE_CURRENT_DIR ON)
endif()

message("cmake source dir = ${CMAKE_SOURCE_DIR}")

set (Qt5_DIR "/mingw64/lib/cmake/Qt5")

find_package(Qt5 COMPONENTS Widgets REQUIRED)

add_executable(helloworld
    main.cpp
)

target_link_libraries(helloworld Qt5::Widgets)

我只是从 official page 复制了 CMakeList|并写下一些非常基本的 main.cpp。 然后我在我的 Linux (openSUSE 15.0) 上构建它,一切正常。 现在我想在 MSYS2 上构建(以获取 Windows 版本)。首先我无法构建 cmake 项目,因为找不到 Qt5Config.cmake 文件。我加了

set (Qt5_DIR "/mingw64/lib/cmake/Qt5")

“手动”查找 Qt5Config.cmake 文件。 将其添加到我的 cmake 文件后,项目构建良好。 但是当我运行 make 编译程序时,我得到以下错误:

[ 25%] Automatic MOC and UIC for target helloworld
[ 25%] Built target helloworld_autogen
[ 50%] Linking CXX executable helloworld.exe
CMakeFiles/helloworld.dir/main.cpp.o:main.cpp:(.text$_ZN15QTypedArrayDataItE10deallocateEP10QArrayData[_ZN15QTypedArrayDataItE10deallocateEP10QArrayData]+0x1c): undefined reference to `QArrayData::deallocate(QArrayData*, unsigned long, unsigned long)'
CMakeFiles/helloworld.dir/main.cpp.o:main.cpp:(.text$_ZN15QTypedArrayDataItE10deallocateEP10QArrayData[_ZN15QTypedArrayDataItE10deallocateEP10QArrayData]+0x1c): relocation truncated to fit: R_X86_64_PC32 against undefined symbol `QArrayData::deallocate(QArrayData*, unsigned long, unsigned long)'
collect2: error: ld returned 1 exit status
make[2]: *** [CMakeFiles/helloworld.dir/build.make:102: helloworld.exe] Error 1
make[1]: *** [CMakeFiles/Makefile2:73: CMakeFiles/helloworld.dir/all] Error 2
make: *** [Makefile:84: all] Error 2

据我所知,有一些找不到的缺失库。 但我不知道如何修复它。

最佳答案

您不需要 CMakeLists.tx 你可以按下构建按钮

关于c++ - 如何在 MSYS2 中通过 CMake 构建 C++ Qt5 应用程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57142037/

相关文章:

c++ - 令人困惑的输出

cmake - 如何将配置变量添加到我的 CMake 脚本中?

CMake错误: Unknown argument --clean-first

cmake - 在 nmake x64 中使用 cmake

c++ - Qt5 连接导致 Unhandled Exception 或 HEAP CORRUPTION

c++ - 实例渲染 OpenGL

c++抽象类在非纯虚函数中使用纯虚函数

c++ - MFC CView::OnFilePrint 不会打印一份以上

c++ - 当可见性状态改变时通知 Qt Window

c++ - 如何向 OSX 中的应用程序菜单添加元素?