diff options
author | Sebastian Holtermann <sebholt@xwmw.org> | 2017-05-15 09:05:58 (GMT) |
---|---|---|
committer | Sebastian Holtermann <sebholt@xwmw.org> | 2017-05-26 13:27:17 (GMT) |
commit | dbda590628868e37956838c1d93d54050ab3e7c1 (patch) | |
tree | 636949e74c8f8e398c34a6931cad4a7578aeafe9 /Help/prop_tgt/AUTOUIC.rst | |
parent | 0965002e57f7461d290792252b289fda9247d530 (diff) | |
download | CMake-dbda590628868e37956838c1d93d54050ab3e7c1.zip CMake-dbda590628868e37956838c1d93d54050ab3e7c1.tar.gz CMake-dbda590628868e37956838c1d93d54050ab3e7c1.tar.bz2 |
Autogen: Per-config file suffixes. New AUTOGEN_BUILD_DIR target property.
Closes #14760
Closes #14313
Diffstat (limited to 'Help/prop_tgt/AUTOUIC.rst')
-rw-r--r-- | Help/prop_tgt/AUTOUIC.rst | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/Help/prop_tgt/AUTOUIC.rst b/Help/prop_tgt/AUTOUIC.rst index 91d95e5..4a08072 100644 --- a/Help/prop_tgt/AUTOUIC.rst +++ b/Help/prop_tgt/AUTOUIC.rst @@ -14,8 +14,13 @@ and invoke ``uic`` accordingly. If an ``#include`` statement like searched for first in the vicinity of ``source.cpp`` and afterwards in the optional :prop_tgt:`AUTOUIC_SEARCH_PATHS` of the target. ``uic`` is run on the ``foo.ui`` file to generate ``ui_foo.h`` in the directory -``<CMAKE_CURRENT_BINARY_DIR>/<TARGETNAME>_autogen/include``, -which is added to the target's :prop_tgt:`INCLUDE_DIRECTORIES` automatically. +``<AUTOGEN_BUILD_DIR>/include``, +which is automatically added to the target's :prop_tgt:`INCLUDE_DIRECTORIES`. + +* For multi configuration generators, except Xcode, the include directory is + ``<AUTOGEN_BUILD_DIR>/include_<CONFIG>``. + +* See :prop_tgt:`AUTOGEN_BUILD_DIR`. This property is initialized by the value of the :variable:`CMAKE_AUTOUIC` variable if it is set when a target is created. |