mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-06 05:40:54 -06:00
Covers almost all blocks containing actual code, except: * Parsed-literal blocks can't be highlighted, including many command summaries and substitution-heavy docs like find_... commands. This is a Sphinx limitation. * Code with errors, like CMP0049, DEPLOYMENT_ADDITIONAL_FILES, DEPLOYMENT_REMOTE_DIRECTORY, @PACKAGE_INIT@ substitution in the tutorial, bracket arguments/comments in cmake-language.7 and cmake-developer.7. * FindQt4 module, which needs reformatting.
25 lines
700 B
ReStructuredText
25 lines
700 B
ReStructuredText
CMAKE_AUTOMOC_MACRO_NAMES
|
|
----------------------------
|
|
|
|
.. versionadded:: 3.10
|
|
|
|
:ref:`Semicolon-separated list <CMake Language Lists>` list of macro names used by
|
|
:variable:`CMAKE_AUTOMOC` to determine if a C++ file needs to be
|
|
processed by ``moc``.
|
|
|
|
This variable is used to initialize the :prop_tgt:`AUTOMOC_MACRO_NAMES`
|
|
property on all the targets. See that target property for additional
|
|
information.
|
|
|
|
The default value is ``Q_OBJECT;Q_GADGET;Q_NAMESPACE;Q_NAMESPACE_EXPORT``.
|
|
|
|
Example
|
|
^^^^^^^
|
|
Let CMake know that source files that contain ``CUSTOM_MACRO`` must be ``moc``
|
|
processed as well:
|
|
|
|
.. code-block:: cmake
|
|
|
|
set(CMAKE_AUTOMOC ON)
|
|
list(APPEND CMAKE_AUTOMOC_MACRO_NAMES "CUSTOM_MACRO")
|