diff options
author | Cristian Adam <cristian.adam@gmail.com> | 2019-09-13 18:21:23 (GMT) |
---|---|---|
committer | Cristian Adam <cristian.adam@gmail.com> | 2019-09-28 13:56:53 (GMT) |
commit | b515af782bccf147e8bd62444c9f1808668f12ac (patch) | |
tree | b876cacf0d60d61f4eba2b0c840a64af22a752ce /Help | |
parent | 9e66397c28110f015e5b044dfe9782cd5f11c8c3 (diff) | |
download | CMake-b515af782bccf147e8bd62444c9f1808668f12ac.zip CMake-b515af782bccf147e8bd62444c9f1808668f12ac.tar.gz CMake-b515af782bccf147e8bd62444c9f1808668f12ac.tar.bz2 |
Help: Add release note for Objective-C/C++ language support
Diffstat (limited to 'Help')
-rw-r--r-- | Help/release/dev/objective-c-cxx.rst | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Help/release/dev/objective-c-cxx.rst b/Help/release/dev/objective-c-cxx.rst new file mode 100644 index 0000000..218af4e --- /dev/null +++ b/Help/release/dev/objective-c-cxx.rst @@ -0,0 +1,9 @@ +Objective C/C++ +--------------- + +* CMake learned to support the Objective C (``OBJC``) and Objective C++ + (``OBJCXX``) languages. They may be enabled via the :command:`project` + and :command:`enable_language` commands. When ``OBJC`` or ``OBJCXX`` + is enabled, source files with the ``.m`` or ``.mm``, respectively, + will be compiled as Objective C or C++. Otherwise they will be treated + as plain C++ sources as they were before. |