diff options
author | Brad King <brad.king@kitware.com> | 2020-09-15 12:29:12 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2020-09-15 12:29:12 (GMT) |
commit | b9bcec40c1cfb3d3f5c5301efbba9a137181a7f3 (patch) | |
tree | 00d72f93b33847b9cb264e3b607d0794b9ea240d | |
parent | 30fec0d8a825ceb7d4521071cb7d80e265638087 (diff) | |
parent | 52217c3440baab4af0011db0eb55b8c934581cd2 (diff) | |
download | CMake-b9bcec40c1cfb3d3f5c5301efbba9a137181a7f3.zip CMake-b9bcec40c1cfb3d3f5c5301efbba9a137181a7f3.tar.gz CMake-b9bcec40c1cfb3d3f5c5301efbba9a137181a7f3.tar.bz2 |
Merge branch 'backport-3.16-automoc-path-prefix-off'
-rw-r--r-- | Help/release/3.16.rst | 16 |
1 files changed, 11 insertions, 5 deletions
diff --git a/Help/release/3.16.rst b/Help/release/3.16.rst index f3fdb08..84d96cd 100644 --- a/Help/release/3.16.rst +++ b/Help/release/3.16.rst @@ -178,17 +178,15 @@ Modules Autogen ------- -* When using :prop_tgt:`AUTOMOC`, CMake now generates the ``-p`` path prefix +* When using :prop_tgt:`AUTOMOC`, the new :variable:`CMAKE_AUTOMOC_PATH_PREFIX` + variable or :prop_tgt:`AUTOMOC_PATH_PREFIX` target property may be enabled + to generate the ``-p`` path prefix option for ``moc``. This ensures that ``moc`` output files are identical on different build setups (given, that the headers compiled by ``moc`` are in an :command:`include directory <target_include_directories>`). Also it ensures that ``moc`` output files will compile correctly when the source and/or build directory is a symbolic link. - The ``moc`` path prefix generation behavior can be configured by setting - the new :variable:`CMAKE_AUTOMOC_PATH_PREFIX` variable and/or - :prop_tgt:`AUTOMOC_PATH_PREFIX` target property. - CTest ----- @@ -316,3 +314,11 @@ Changes made since CMake 3.16.0 include the following. :prop_tgt:`INTERFACE_INCLUDE_DIRECTORIES` target properties. Previously they would be places in ``*_CFLAGS_OTHER`` variables and :prop_tgt:`INTERFACE_COMPILE_OPTIONS` target properties. + +3.16.9 +------ + +* The default value of :variable:`CMAKE_AUTOMOC_PATH_PREFIX` was changed to + ``OFF`` because this feature can break existing projects that have + identically named header files in different include directories. + This restores compatibility with behavior of CMake 3.15 and below. |