CMake编译Widget UI Qt程序

自从CMake被引入到KDE项目的编译系统中后,CMake的使用者日益增多,Qt也不例外,除了使用QMAKE编译Qt程序外,也可以使用CMake来编译Qt程序,并且CMake在使用上更灵活,特别是大型程序。


CMake对于Qt4和Qt5都支持,不过使用上有点差异,这里主要看下Qt5下使用CMake编译Qt程序。

官方文档链接: http://qt-project.org/doc/qt-5.0/qtdoc/cmake-manual.html

这里是针对CMake 2.8.9版本以及之后的版本。

对于一个Widget UI的Qt程序, 首先:

# Find includes in corresponding build directories
set(CMAKE_INCLUDE_CURRENT_DIR ON)

# Instruct CMake to run moc automatically when needed
set(CMAKE_AUTOMOC ON)

set(EXECUTABLE_OUTPUT_PATH  "${PROJECT_SOURCE_DIR}/bin")

# Find the QtWidgets library
find_package(Qt5Widgets)

假设我们的UI程序中的界面是通过Qt Designer 设计的,则接下来CMake的内容如下:

qt5_wrap_ui(ui_FILES gotocelldialog.ui)
add_executable(gotocelldialog
     main.cpp
     ${ui_FILES}
 )

 # Use the Widgets module from Qt 5
 qt5_use_modules(gotocelldialog Widgets)

另外, 如果创建的资源文件,则需要

qt5_add_resources来生成对应的CPP文件。


最后,编写我们的main函数:

#include <QApplication>
#include <QDialog>

#include "ui_gotocelldialog.h"

int main(int argc, char *argv[])
{
    QApplication app(argc, argv);
    Ui::GoToCellDialog ui;
    QDialog *dialog = new QDialog;
    ui.setupUi(dialog);
    dialog->show();

    return app.exec();
}


你可能感兴趣的:(CMake编译Widget UI Qt程序)