diff options
Diffstat (limited to 'Help')
-rw-r--r-- | Help/command/install.rst | 2 | ||||
-rw-r--r-- | Help/policy/CMP0112.rst | 4 |
2 files changed, 4 insertions, 2 deletions
diff --git a/Help/command/install.rst b/Help/command/install.rst index 14f7ff7..1a9dfd7 100644 --- a/Help/command/install.rst +++ b/Help/command/install.rst @@ -828,7 +828,7 @@ of the ``Development`` component in the package metadata, ensuring that the library is always installed if the headers and CMake export file are present. .. versionadded:: 3.7 - In addition to cmake language files, the ``EXPORT_ANDROID_MK`` mode maybe + In addition to cmake language files, the ``EXPORT_ANDROID_MK`` mode may be used to specify an export to the android ndk build system. This mode accepts the same options as the normal export mode. The Android NDK supports the use of prebuilt libraries, both static and shared. This diff --git a/Help/policy/CMP0112.rst b/Help/policy/CMP0112.rst index 313a51e..5b00d07 100644 --- a/Help/policy/CMP0112.rst +++ b/Help/policy/CMP0112.rst @@ -24,7 +24,9 @@ file name components no longer add a dependency on the evaluated target. In CMake 3.18 and lower a dependency on the evaluated target of the above generator expressions would always be added. CMake 3.19 and above prefer to not add this dependency. This policy provides compatibility for projects -that have not been updated to expect the new behavior. +that have not been updated to expect the new behavior. The policy setting +is recorded on each target when it is created, and decides whether generator +expressions referencing that target imply a dependency on it. The ``OLD`` behavior for this policy is to add a dependency on the evaluated target for the above generator expressions. The ``NEW`` behavior of |