web-dev-qa-db-ja.com

CMakeおよびAUTORCCを使用したQtリソースファイル

ソリューション

add_executable()ステートメントにリソースファイルを追加する

問題

add_library()にはありません)

メインウィンドウアイコンを設定できません。

メモ

  • AUTORCCを使用しないと、コンパイルの問題が発生します:QtCore/qglobal.h: no such file or directory。しかし、私はより近代的なCMakeアプローチとしてAUTORCCを好みます。

  • AUTORCC(提供されたものとは異なるCMakeLists.txt)とQt-4.6.2なしでは、現在のコードは機能しました。別のCMakeLists.txt)

コード

これは私のプロジェクトの最小化されたコードです。木:

|- CMakeLists.txt
|- main_window.hpp
|- main_window.cpp
|- main.cpp
|- resources
   | - resources.qrc
   | - images
       | - logo.png

main_window.cpp

#ifndef MAINWINDOW_HPP
#define MAINWINDOW_HPP

#include <QMainWindow>

class MainWindow : public QMainWindow
{
    Q_OBJECT
public:
    MainWindow();
};

#endif

main_window.cpp

#include "main_window.hpp"

MainWindow::MainWindow()
{
    // i tried ":/images.png", ":/resources/images/logo.png", ":/logo.png"
    setWindowIcon(QIcon(":images/logo.png"));    
}

main.cpp

#include <QApplication>
#include "main_window.hpp"

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

    app.setOrganizationName("Organization");
    app.setApplicationName("Application Example");
    MainWindow mainWin;
    mainWin.show();

    return app.exec();

}

CMakeLists.txt

cmake_minimum_required(VERSION 3.1)

project(qt_project)

set(CMAKE_AUTOMOC ON)
set(CMAKE_AUTORCC ON)
find_package(Qt4 4.6 REQUIRED)

set(QT_USE_QTGUI TRUE)
set(QT_USE_QTXML TRUE)

include(${QT_USE_FILE})
add_definitions(${QT_DEFINITIONS})

// NOTE: it would be more convenient to be able to add the
// resource file here upon the creation of the library
add_library(mylib main_window.cpp)

// SOLVED
// BEFORE: add_executable(qt_test main.cpp)
add_executable(qt_test main.cpp resources/resources.qrc)

target_link_libraries(qt_test
    mylib
    ${QT_LIBRARIES}
)

resources/resources.qrc

<!DOCTYPE RCC><RCC version="1.0">
    <qresource>
        <file>images/logo.png</file>
    </qresource>
</RCC>

編集

これは生成されたqrc_resources.cxx

#include <QtCore/qglobal.h>

static const unsigned char qt_resource_data[] = {
  // /users/ddakop/dev/misc/qt/resources/images/logo.png
  // ... removed hex data
};

static const unsigned char qt_resource_name[] = {
  // images
  // ... removed hex data
    // logo.png
  // ... removed hex data

};

static const unsigned char qt_resource_struct[] = {
  // :
  0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1,
  // :/images
  0x0,0x0,0x0,0x0,0x0,0x2,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x2,
  // :/images/logo.png
  0x0,0x0,0x0,0x12,0x0,0x0,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,

};

QT_BEGIN_NAMESPACE

extern Q_CORE_EXPORT bool qRegisterResourceData
    (int, const unsigned char *, const unsigned char *, const unsigned char *);

extern Q_CORE_EXPORT bool qUnregisterResourceData
    (int, const unsigned char *, const unsigned char *, const unsigned char *);

QT_END_NAMESPACE


int QT_MANGLE_NAMESPACE(qInitResources_resources)()
{
    QT_PREPEND_NAMESPACE(qRegisterResourceData)
        (0x01, qt_resource_struct, qt_resource_name, qt_resource_data);
    return 1;
}

Q_CONSTRUCTOR_FUNCTION(QT_MANGLE_NAMESPACE(qInitResources_resources))

int QT_MANGLE_NAMESPACE(qCleanupResources_resources)()
{
    QT_PREPEND_NAMESPACE(qUnregisterResourceData)
       (0x01, qt_resource_struct, qt_resource_name, qt_resource_data);
    return 1;
}

Q_DESTRUCTOR_FUNCTION(QT_MANGLE_NAMESPACE(qCleanupResources_resources))

システム

CentOS-5、Qt-4.8.6、CMake-3.2.1、gcc-4.8.2

13

Qrc_resourcesで生成されたファイルをリンクする必要があると思います。

次の情報を知っていると思います。

http://www.cmake.org/cmake/help/v3.0/manual/cmake-qt.7.html

次の行が見えるところ:

add_executable(myexe main.cpp resource_file.qrc)

より詳しい情報:

http://www.cmake.org/cmake/help/v3.0/prop_tgt/AUTORCC.html

24
Tarod

これが新しいものかどうかはわかりませんが、ライブラリにリソースを追加する方法を見つけました。

私のライブラリのCMakeLists.txtには、次のものがあります。

list (APPEND RESOURCES library.qrc)
qt5_add_resources (RCC_SOURCES ${RESOURCES})

...

add_library(library ${RCC_SOURCES} ${SOURCES})

ライブラリの「メインクラス」の1つ(私にとって、このクラスはライブラリで最初に作成され、最後に破棄されました)で、次のことを行いました。

class libClass : public QMainWindow {
  Q_OBJECT

public:
  libClass() : QMainWindow(nullptr, 0) {
    Q_INIT_RESOURCE(library);
  }

  ~libClass() {
    Q_CLEANUP_RESOURCE(library);
  }
};
3
Chris Walker