cmake-qt.7.rst 8.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210
  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 ``<basename>.moc`` must
  48. be included by the user in the C++ implementation file with a preprocessor
  49. ``#include``.
  50. Included ``moc_*.cpp`` and ``*.moc`` files will be generated in the
  51. ``<CMAKE_CURRENT_BINARY_DIR>/<TARGETNAME>_autogen/include`` directory which is
  52. automatically added to the target's :prop_tgt:`INCLUDE_DIRECTORIES`.
  53. (This differs from CMake 3.7 and below; see their documentation for details.)
  54. Not included ``moc_<basename>.cpp`` files will be generated in custom
  55. folders to avoid name collisions and included in a separate
  56. ``<CMAKE_CURRENT_BINARY_DIR>/<TARGETNAME>_autogen/moc_compilation.cpp``
  57. file which is compiled into the target.
  58. The ``moc`` command line will consume the :prop_tgt:`COMPILE_DEFINITIONS` and
  59. :prop_tgt:`INCLUDE_DIRECTORIES` target properties from the target it is being
  60. invoked for, and for the appropriate build configuration.
  61. The :prop_tgt:`AUTOMOC` target property may be pre-set for all
  62. following targets by setting the :variable:`CMAKE_AUTOMOC` variable. The
  63. :prop_tgt:`AUTOMOC_MOC_OPTIONS` target property may be populated to set
  64. options to pass to ``moc``. The :variable:`CMAKE_AUTOMOC_MOC_OPTIONS`
  65. variable may be populated to pre-set the options for all following targets.
  66. Additional ``moc`` dependency file names can be extracted from source code
  67. by using :prop_tgt:`AUTOMOC_DEPEND_FILTERS`.
  68. Source C++ files can be excluded from :prop_tgt:`AUTOMOC` processing by
  69. enabling :prop_sf:`SKIP_AUTOMOC` or the broader :prop_sf:`SKIP_AUTOGEN`.
  70. .. _`Qt AUTOUIC`:
  71. AUTOUIC
  72. ^^^^^^^
  73. The :prop_tgt:`AUTOUIC` target property controls whether :manual:`cmake(1)`
  74. inspects the C++ files in the target to determine if they require ``uic`` to
  75. be run, and to create rules to execute ``uic`` at the appropriate time.
  76. If a preprocessor ``#include`` directive is found which matches
  77. ``ui_<basename>.h``, and a ``<basename>.ui`` file exists, then ``uic`` will
  78. be executed to generate the appropriate file. The ``<basename>.ui`` file is
  79. searched for first in the vicinity of including file and afterwards in the
  80. optional :prop_tgt:`AUTOUIC_SEARCH_PATHS` of the target.
  81. The generated generated ``ui_*.h`` files are placed in the
  82. ``<CMAKE_CURRENT_BINARY_DIR>/<TARGETNAME>_autogen/include`` directory which is
  83. automatically added to the target's :prop_tgt:`INCLUDE_DIRECTORIES`.
  84. (This differs from CMake 3.7 and below; see their documentation for details.)
  85. The :prop_tgt:`AUTOUIC` target property may be pre-set for all following
  86. targets by setting the :variable:`CMAKE_AUTOUIC` variable. The
  87. :prop_tgt:`AUTOUIC_OPTIONS` target property may be populated to set options
  88. to pass to ``uic``. The :variable:`CMAKE_AUTOUIC_OPTIONS` variable may be
  89. populated to pre-set the options for all following targets. The
  90. :prop_sf:`AUTOUIC_OPTIONS` source file property may be set on the
  91. ``<basename>.ui`` file to set particular options for the file. This
  92. overrides options from the :prop_tgt:`AUTOUIC_OPTIONS` target property.
  93. A target may populate the :prop_tgt:`INTERFACE_AUTOUIC_OPTIONS` target
  94. property with options that should be used when invoking ``uic``. This must be
  95. consistent with the :prop_tgt:`AUTOUIC_OPTIONS` target property content of the
  96. depender target. The :variable:`CMAKE_DEBUG_TARGET_PROPERTIES` variable may
  97. be used to track the origin target of such
  98. :prop_tgt:`INTERFACE_AUTOUIC_OPTIONS`. This means that a library which
  99. provides an alternative translation system for Qt may specify options which
  100. should be used when running ``uic``:
  101. .. code-block:: cmake
  102. add_library(KI18n klocalizedstring.cpp)
  103. target_link_libraries(KI18n Qt5::Core)
  104. # KI18n uses the tr2i18n() function instead of tr(). That function is
  105. # declared in the klocalizedstring.h header.
  106. set(autouic_options
  107. -tr tr2i18n
  108. -include klocalizedstring.h
  109. )
  110. set_property(TARGET KI18n APPEND PROPERTY
  111. INTERFACE_AUTOUIC_OPTIONS ${autouic_options}
  112. )
  113. A consuming project linking to the target exported from upstream automatically
  114. uses appropriate options when ``uic`` is run by :prop_tgt:`AUTOUIC`, as a
  115. result of linking with the :prop_tgt:`IMPORTED` target:
  116. .. code-block:: cmake
  117. set(CMAKE_AUTOUIC ON)
  118. # Uses a libwidget.ui file:
  119. add_library(LibWidget libwidget.cpp)
  120. target_link_libraries(LibWidget
  121. KF5::KI18n
  122. Qt5::Widgets
  123. )
  124. Source files can be excluded from :prop_tgt:`AUTOUIC` processing by
  125. enabling :prop_sf:`SKIP_AUTOUIC` or the broader :prop_sf:`SKIP_AUTOGEN`.
  126. .. _`Qt AUTORCC`:
  127. AUTORCC
  128. ^^^^^^^
  129. The :prop_tgt:`AUTORCC` target property controls whether :manual:`cmake(1)`
  130. creates rules to execute ``rcc`` at the appropriate time on source files
  131. which have the suffix ``.qrc``.
  132. .. code-block:: cmake
  133. add_executable(myexe main.cpp resource_file.qrc)
  134. The :prop_tgt:`AUTORCC` target property may be pre-set for all following targets
  135. by setting the :variable:`CMAKE_AUTORCC` variable. The
  136. :prop_tgt:`AUTORCC_OPTIONS` target property may be populated to set options
  137. to pass to ``rcc``. The :variable:`CMAKE_AUTORCC_OPTIONS` variable may be
  138. populated to pre-set the options for all following targets. The
  139. :prop_sf:`AUTORCC_OPTIONS` source file property may be set on the
  140. ``<name>.qrc`` file to set particular options for the file. This
  141. overrides options from the :prop_tgt:`AUTORCC_OPTIONS` target property.
  142. Source files can be excluded from :prop_tgt:`AUTORCC` processing by
  143. enabling :prop_sf:`SKIP_AUTORCC` or the broader :prop_sf:`SKIP_AUTOGEN`.
  144. qtmain.lib on Windows
  145. =====================
  146. The Qt 4 and 5 :prop_tgt:`IMPORTED` targets for the QtGui libraries specify
  147. that the qtmain.lib static library shipped with Qt will be linked by all
  148. dependent executables which have the :prop_tgt:`WIN32_EXECUTABLE` enabled.
  149. To disable this behavior, enable the ``Qt5_NO_LINK_QTMAIN`` target property for
  150. Qt 5 based targets or ``QT4_NO_LINK_QTMAIN`` target property for Qt 4 based
  151. targets.
  152. .. code-block:: cmake
  153. add_executable(myexe WIN32 main.cpp)
  154. target_link_libraries(myexe Qt4::QtGui)
  155. add_executable(myexe_no_qtmain WIN32 main_no_qtmain.cpp)
  156. set_property(TARGET main_no_qtmain PROPERTY QT4_NO_LINK_QTMAIN ON)
  157. target_link_libraries(main_no_qtmain Qt4::QtGui)