diff options
author | Brad King <brad.king@kitware.com> | 2019-11-18 14:53:57 (GMT) |
---|---|---|
committer | Kitware Robot <kwrobot@kitware.com> | 2019-11-18 14:54:15 (GMT) |
commit | e64d39eb42a13f3a8d0e3d005a2936a27a2c8257 (patch) | |
tree | 4a97ca717e583ad34d4b04d70a4cad343047f07e | |
parent | 1c09b8c164e0efd8fe82bb783d014e09e0285a0e (diff) | |
parent | 229f2cc5fd1ae26988b9ce71a0d9245a1709d674 (diff) | |
download | CMake-e64d39eb42a13f3a8d0e3d005a2936a27a2c8257.zip CMake-e64d39eb42a13f3a8d0e3d005a2936a27a2c8257.tar.gz CMake-e64d39eb42a13f3a8d0e3d005a2936a27a2c8257.tar.bz2 |
Merge topic 'compile-features-other-lang' into release-3.16
229f2cc5fd Help: Clarify compile features handling for OBJC and OBJCXX
Acked-by: Kitware Robot <kwrobot@kitware.com>
Merge-request: !4057
-rw-r--r-- | Help/manual/cmake-compile-features.7.rst | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/Help/manual/cmake-compile-features.7.rst b/Help/manual/cmake-compile-features.7.rst index a821189..a14e322 100644 --- a/Help/manual/cmake-compile-features.7.rst +++ b/Help/manual/cmake-compile-features.7.rst @@ -28,10 +28,15 @@ CMake knows are known to the compiler, regardless of language standard or compile flags needed to use them. Features known to CMake are named mostly following the same convention -as the Clang feature test macros. The are some exceptions, such as +as the Clang feature test macros. There are some exceptions, such as CMake using ``cxx_final`` and ``cxx_override`` instead of the single ``cxx_override_control`` used by Clang. +Note that there are no separate compile features properties or variables for +the ``OBJC`` or ``OBJCXX`` languages. These are based off ``C`` or ``C++`` +respectively, so the properties and variables for their corresponding base +language should be used instead. + Compile Feature Requirements ============================ |