cmake/Help/policy/CMP0021.rst

22 lines
882 B
ReStructuredText
Raw Normal View History

2014-08-03 19:52:23 +02:00
CMP0021
-------
2019-11-11 23:01:05 +01:00
Fatal error on relative paths in :prop_tgt:`INCLUDE_DIRECTORIES` target
property.
2014-08-03 19:52:23 +02:00
2019-11-11 23:01:05 +01:00
CMake 2.8.10.2 and lower allowed the :prop_tgt:`INCLUDE_DIRECTORIES` target
2014-08-03 19:52:23 +02:00
property to contain relative paths. The base path for such relative
2019-11-11 23:01:05 +01:00
entries is not well defined. CMake 2.8.12 issues a ``FATAL_ERROR`` if the
:prop_tgt:`INCLUDE_DIRECTORIES` property contains a relative path.
2014-08-03 19:52:23 +02:00
2019-11-11 23:01:05 +01:00
The ``OLD`` behavior for this policy is not to warn about relative paths
in the ``INCLUDE_DIRECTORIES`` target property. The ``NEW`` behavior for this
policy is to issue a ``FATAL_ERROR`` if ``INCLUDE_DIRECTORIES`` contains a
2014-08-03 19:52:23 +02:00
relative path.
This policy was introduced in CMake version 2.8.12. CMake version
2019-11-11 23:01:05 +01:00
|release| warns when the policy is not set and uses ``OLD`` behavior. Use
the :command:`cmake_policy` command to set it to ``OLD`` or ``NEW`` explicitly.
2015-08-17 11:37:30 +02:00
.. include:: DEPRECATED.txt