cmake/Help/prop_tgt/AUTOMOC.rst

91 lines
3.8 KiB
ReStructuredText
Raw Normal View History

2014-08-03 19:52:23 +02:00
AUTOMOC
-------
Should the target be processed with automoc (for Qt projects).
AUTOMOC is a boolean specifying whether CMake will handle the Qt ``moc``
preprocessor automatically, i.e. without having to use the
2018-01-26 17:06:56 +01:00
:module:`QT4_WRAP_CPP() <FindQt4>` or QT5_WRAP_CPP() macro.
Currently Qt4 and Qt5 are supported.
2016-07-09 11:21:54 +02:00
2017-07-20 19:35:53 +02:00
When this property is set ``ON``, CMake will scan the header and
2016-07-09 11:21:54 +02:00
source files at build time and invoke moc accordingly.
2017-07-20 19:35:53 +02:00
* If an ``#include`` statement like ``#include "moc_<basename>.cpp"`` is found,
2018-01-26 17:06:56 +01:00
a macro from :prop_tgt:`AUTOMOC_MACRO_NAMES` is expected to appear in the
``<basename>.h(xx)`` header file. ``moc`` is run on the header
2017-07-20 19:35:53 +02:00
file to generate ``moc_<basename>.cpp`` in the
``<AUTOGEN_BUILD_DIR>/include`` directory which is automatically added
to the target's :prop_tgt:`INCLUDE_DIRECTORIES`.
This allows the compiler to find the included ``moc_<basename>.cpp`` file
regardless of the location the original source.
2018-01-26 17:06:56 +01:00
* For :prop_gbl:`multi configuration generators <GENERATOR_IS_MULTI_CONFIG>`,
the include directory is ``<AUTOGEN_BUILD_DIR>/include_<CONFIG>``.
2017-07-20 19:35:53 +02:00
* See :prop_tgt:`AUTOGEN_BUILD_DIR`.
* If an ``#include`` statement like ``#include "<basename>.moc"`` is found,
2018-01-26 17:06:56 +01:00
a macro from :prop_tgt:`AUTOMOC_MACRO_NAMES` is expected to appear in the
source file and ``moc`` is run on the source file itself.
2017-07-20 19:35:53 +02:00
* Header files that are not included by an ``#include "moc_<basename>.cpp"``
2018-01-26 17:06:56 +01:00
statement are nonetheless scanned for a macro out of
:prop_tgt:`AUTOMOC_MACRO_NAMES`.
2017-07-20 19:35:53 +02:00
The resulting ``moc_<basename>.cpp`` files are generated in custom
directories and automatically included in a generated
``<AUTOGEN_BUILD_DIR>/mocs_compilation.cpp`` file,
which is compiled as part of the target.
* The custom directories with checksum
2018-01-26 17:06:56 +01:00
based names help to avoid name collisions for ``moc`` files with the same
2017-07-20 19:35:53 +02:00
``<basename>``.
* See :prop_tgt:`AUTOGEN_BUILD_DIR`.
* Additionally, header files with the same base name as a source file,
(like ``<basename>.h``) or ``_p`` appended to the base name (like
2018-01-26 17:06:56 +01:00
``<basename>_p.h``), are scanned for a macro out of
:prop_tgt:`AUTOMOC_MACRO_NAMES`, and if found, ``moc``
is also executed on those files.
2017-07-20 19:35:53 +02:00
* ``AUTOMOC`` always checks multiple header alternative extensions,
such as ``hpp``, ``hxx``, etc. when searching for headers.
* ``AUTOMOC`` looks for the ``Q_PLUGIN_METADATA`` macro and reruns the
``moc`` when the file addressed by the ``FILE`` argument of the macro changes.
2016-07-09 11:21:54 +02:00
This property is initialized by the value of the :variable:`CMAKE_AUTOMOC`
variable if it is set when a target is created.
2014-08-03 19:52:23 +02:00
2018-01-26 17:06:56 +01:00
Additional command line options for ``moc`` can be set via the
2014-08-03 19:52:23 +02:00
:prop_tgt:`AUTOMOC_MOC_OPTIONS` property.
By enabling the :variable:`CMAKE_AUTOMOC_RELAXED_MODE` variable the
2018-01-26 17:06:56 +01:00
rules for searching the files which will be processed by ``moc`` can be relaxed.
2014-08-03 19:52:23 +02:00
See the documentation for this variable for more details.
The global property :prop_gbl:`AUTOGEN_TARGETS_FOLDER` can be used to group the
automoc targets together in an IDE, e.g. in MSVS.
2017-07-20 19:35:53 +02:00
The global property :prop_gbl:`AUTOGEN_SOURCE_GROUP` can be used to group
files generated by :prop_tgt:`AUTOMOC` together in an IDE, e.g. in MSVS.
2018-04-23 21:13:27 +02:00
Additional macro names to search for can be added to
:prop_tgt:`AUTOMOC_MACRO_NAMES`.
2018-01-26 17:06:56 +01:00
2017-07-20 19:35:53 +02:00
Additional ``moc`` dependency file names can be extracted from source code
by using :prop_tgt:`AUTOMOC_DEPEND_FILTERS`.
2018-01-26 17:06:56 +01:00
Compiler pre definitions for ``moc`` are written to a ``moc_predefs.h`` file
which is controlled by :prop_tgt:`AUTOMOC_COMPILER_PREDEFINES`.
2017-04-14 19:02:05 +02:00
Source C++ files can be excluded from :prop_tgt:`AUTOMOC` processing by
enabling :prop_sf:`SKIP_AUTOMOC` or the broader :prop_sf:`SKIP_AUTOGEN`.
2018-04-23 21:13:27 +02:00
The number of parallel ``moc`` processes to start can be modified by
setting :prop_tgt:`AUTOGEN_PARALLEL`.
2014-08-03 19:52:23 +02:00
See the :manual:`cmake-qt(7)` manual for more information on using CMake
with Qt.