cmake-qt.7.rst 7.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192
  1. .. cmake-manual-description: CMake Qt Features Reference
  2. cmake-qt(7)
  3. ***********
  4. .. only:: html
  5. .. contents::
  6. Introduction
  7. ============
  8. CMake can find and use Qt 4 and Qt 5 libraries. The Qt 4 libraries are found
  9. by the :module:`FindQt4` find-module shipped with CMake, whereas the
  10. Qt 5 libraries are found using "Config-file Packages" shipped with Qt 5. See
  11. :manual:`cmake-packages(7)` for more information about CMake packages, and
  12. see `the Qt cmake manual <http://qt-project.org/doc/qt-5/cmake-manual.html>`_
  13. for your Qt version.
  14. Qt 4 and Qt 5 may be used together in the same
  15. :manual:`CMake buildsystem <cmake-buildsystem(7)>`:
  16. .. code-block:: cmake
  17. cmake_minimum_required(VERSION 3.8.0 FATAL_ERROR)
  18. project(Qt4And5)
  19. set(CMAKE_AUTOMOC ON)
  20. find_package(Qt5 COMPONENTS Widgets DBus REQUIRED)
  21. add_executable(publisher publisher.cpp)
  22. target_link_libraries(publisher Qt5::Widgets Qt5::DBus)
  23. find_package(Qt4 REQUIRED)
  24. add_executable(subscriber subscriber.cpp)
  25. target_link_libraries(subscriber Qt4::QtGui Qt4::QtDBus)
  26. A CMake target may not link to both Qt 4 and Qt 5. A diagnostic is issued if
  27. this is attempted or results from transitive target dependency evaluation.
  28. Qt Build Tools
  29. ==============
  30. Qt relies on some bundled tools for code generation, such as ``moc`` for
  31. meta-object code generation, ``uic`` for widget layout and population,
  32. and ``rcc`` for virtual filesystem content generation. These tools may be
  33. automatically invoked by :manual:`cmake(1)` if the appropriate conditions
  34. are met. The automatic tool invocation may be used with both Qt 4 and Qt 5.
  35. The tools are executed as part of a synthesized custom target generated by
  36. CMake. Target dependencies may be added to that custom target by adding them
  37. to the :prop_tgt:`AUTOGEN_TARGET_DEPENDS` target property.
  38. AUTOMOC
  39. ^^^^^^^
  40. The :prop_tgt:`AUTOMOC` target property controls whether :manual:`cmake(1)`
  41. inspects the C++ files in the target to determine if they require ``moc`` to
  42. be run, and to create rules to execute ``moc`` at the appropriate time.
  43. If a ``Q_OBJECT`` or ``Q_GADGET`` macro is found in a header file, ``moc``
  44. will be run on the file. The result will be put into a file named according
  45. to ``moc_<basename>.cpp``. If the macro is found in a C++ implementation
  46. file, the moc output will be put into a file named according to
  47. ``<basename>.moc``, following the Qt conventions. The ``moc file`` may be
  48. included by the user in the C++ implementation file with a preprocessor
  49. ``#include``. If it is not so included, it will be added to a separate file
  50. which is compiled into the target.
  51. The ``moc`` command line will consume the :prop_tgt:`COMPILE_DEFINITIONS` and
  52. :prop_tgt:`INCLUDE_DIRECTORIES` target properties from the target it is being
  53. invoked for, and for the appropriate build configuration.
  54. The generated ``moc_*.cpp`` and ``*.moc`` files are placed in the
  55. ``<CMAKE_CURRENT_BINARY_DIR>/<TARGETNAME>_autogen/include`` directory which is
  56. automatically added to the target's :prop_tgt:`INCLUDE_DIRECTORIES`.
  57. (This differs from CMake 3.7 and below; see their documentation for details.)
  58. The :prop_tgt:`AUTOMOC` target property may be pre-set for all
  59. following targets by setting the :variable:`CMAKE_AUTOMOC` variable. The
  60. :prop_tgt:`AUTOMOC_MOC_OPTIONS` target property may be populated to set
  61. options to pass to ``moc``. The :variable:`CMAKE_AUTOMOC_MOC_OPTIONS`
  62. variable may be populated to pre-set the options for all following targets.
  63. .. _`Qt AUTOUIC`:
  64. AUTOUIC
  65. ^^^^^^^
  66. The :prop_tgt:`AUTOUIC` target property controls whether :manual:`cmake(1)`
  67. inspects the C++ files in the target to determine if they require ``uic`` to
  68. be run, and to create rules to execute ``uic`` at the appropriate time.
  69. If a preprocessor ``#include`` directive is found which matches
  70. ``ui_<basename>.h``, and a ``<basename>.ui`` file exists, then ``uic`` will
  71. be executed to generate the appropriate file.
  72. The generated generated ``ui_*.h`` files are placed in the
  73. ``<CMAKE_CURRENT_BINARY_DIR>/<TARGETNAME>_autogen/include`` directory which is
  74. automatically added to the target's :prop_tgt:`INCLUDE_DIRECTORIES`.
  75. (This differs from CMake 3.7 and below; see their documentation for details.)
  76. The :prop_tgt:`AUTOUIC` target property may be pre-set for all following
  77. targets by setting the :variable:`CMAKE_AUTOUIC` variable. The
  78. :prop_tgt:`AUTOUIC_OPTIONS` target property may be populated to set options
  79. to pass to ``uic``. The :variable:`CMAKE_AUTOUIC_OPTIONS` variable may be
  80. populated to pre-set the options for all following targets. The
  81. :prop_sf:`AUTOUIC_OPTIONS` source file property may be set on the
  82. ``<basename>.ui`` file to set particular options for the file. This
  83. overrides options from the :prop_tgt:`AUTOUIC_OPTIONS` target property.
  84. A target may populate the :prop_tgt:`INTERFACE_AUTOUIC_OPTIONS` target
  85. property with options that should be used when invoking ``uic``. This must be
  86. consistent with the :prop_tgt:`AUTOUIC_OPTIONS` target property content of the
  87. depender target. The :variable:`CMAKE_DEBUG_TARGET_PROPERTIES` variable may
  88. be used to track the origin target of such
  89. :prop_tgt:`INTERFACE_AUTOUIC_OPTIONS`. This means that a library which
  90. provides an alternative translation system for Qt may specify options which
  91. should be used when running ``uic``:
  92. .. code-block:: cmake
  93. add_library(KI18n klocalizedstring.cpp)
  94. target_link_libraries(KI18n Qt5::Core)
  95. # KI18n uses the tr2i18n() function instead of tr(). That function is
  96. # declared in the klocalizedstring.h header.
  97. set(autouic_options
  98. -tr tr2i18n
  99. -include klocalizedstring.h
  100. )
  101. set_property(TARGET KI18n APPEND PROPERTY
  102. INTERFACE_AUTOUIC_OPTIONS ${autouic_options}
  103. )
  104. A consuming project linking to the target exported from upstream automatically
  105. uses appropriate options when ``uic`` is run by :prop_tgt:`AUTOUIC`, as a
  106. result of linking with the :prop_tgt:`IMPORTED` target:
  107. .. code-block:: cmake
  108. set(CMAKE_AUTOUIC ON)
  109. # Uses a libwidget.ui file:
  110. add_library(LibWidget libwidget.cpp)
  111. target_link_libraries(LibWidget
  112. KF5::KI18n
  113. Qt5::Widgets
  114. )
  115. .. _`Qt AUTORCC`:
  116. AUTORCC
  117. ^^^^^^^
  118. The :prop_tgt:`AUTORCC` target property controls whether :manual:`cmake(1)`
  119. creates rules to execute ``rcc`` at the appropriate time on source files
  120. which have the suffix ``.qrc``.
  121. .. code-block:: cmake
  122. add_executable(myexe main.cpp resource_file.qrc)
  123. The :prop_tgt:`AUTORCC` target property may be pre-set for all following targets
  124. by setting the :variable:`CMAKE_AUTORCC` variable. The
  125. :prop_tgt:`AUTORCC_OPTIONS` target property may be populated to set options
  126. to pass to ``rcc``. The :variable:`CMAKE_AUTORCC_OPTIONS` variable may be
  127. populated to pre-set the options for all following targets. The
  128. :prop_sf:`AUTORCC_OPTIONS` source file property may be set on the
  129. ``<name>.qrc`` file to set particular options for the file. This
  130. overrides options from the :prop_tgt:`AUTORCC_OPTIONS` target property.
  131. qtmain.lib on Windows
  132. =====================
  133. The Qt 4 and 5 :prop_tgt:`IMPORTED` targets for the QtGui libraries specify
  134. that the qtmain.lib static library shipped with Qt will be linked by all
  135. dependent executables which have the :prop_tgt:`WIN32_EXECUTABLE` enabled.
  136. To disable this behavior, enable the ``Qt5_NO_LINK_QTMAIN`` target property for
  137. Qt 5 based targets or ``QT4_NO_LINK_QTMAIN`` target property for Qt 4 based
  138. targets.
  139. .. code-block:: cmake
  140. add_executable(myexe WIN32 main.cpp)
  141. target_link_libraries(myexe Qt4::QtGui)
  142. add_executable(myexe_no_qtmain WIN32 main_no_qtmain.cpp)
  143. set_property(TARGET main_no_qtmain PROPERTY QT4_NO_LINK_QTMAIN ON)
  144. target_link_libraries(main_no_qtmain Qt4::QtGui)