diff options
author | Stephen Kelly <steveire@gmail.com> | 2014-01-05 03:41:08 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2014-01-07 14:38:01 (GMT) |
commit | 80e9fe9cee63f2a8ade3b381e31477ab6055ef8b (patch) | |
tree | 3865e3ad2502a12318adbb726199fc4591f28847 /Help | |
parent | 0b5bf8ad0b55431969aadb94d6563f1b9c6cf2e6 (diff) | |
download | CMake-80e9fe9cee63f2a8ade3b381e31477ab6055ef8b.zip CMake-80e9fe9cee63f2a8ade3b381e31477ab6055ef8b.tar.gz CMake-80e9fe9cee63f2a8ade3b381e31477ab6055ef8b.tar.bz2 |
Help: Note that language-specific 'built-ins' are set by the project command.
Diffstat (limited to 'Help')
-rw-r--r-- | Help/manual/cmake-toolchains.7.rst | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/Help/manual/cmake-toolchains.7.rst b/Help/manual/cmake-toolchains.7.rst index 97cd650..fb529ad 100644 --- a/Help/manual/cmake-toolchains.7.rst +++ b/Help/manual/cmake-toolchains.7.rst @@ -20,7 +20,11 @@ with information about compiler and utility paths. Languages ========= -Languages are enabled by the :command:`project` command. If no project command +Languages are enabled by the :command:`project` command. Language-specific +built-in variables, such as +:variable:`CMAKE_CXX_COMPILER <CMAKE_<LANG>_COMPILER>`, +:variable:`CMAKE_CXX_COMPILER_ID <CMAKE_<LANG>_COMPILER_ID>` etc are set by +invoking the :command:`project` command. If no project command is in the top-level CMakeLists file, one will be implicitly generated. By default the enabled languages are C and CXX: |