diff options
Diffstat (limited to 'Help')
-rw-r--r-- | Help/dev/review.rst | 7 | ||||
-rw-r--r-- | Help/variable/CMAKE_LANG_COMPILER_VERSION.rst | 4 |
2 files changed, 10 insertions, 1 deletions
diff --git a/Help/dev/review.rst b/Help/dev/review.rst index c4122d4..9450bf0 100644 --- a/Help/dev/review.rst +++ b/Help/dev/review.rst @@ -216,7 +216,12 @@ Builder names follow the pattern ``project-host-os-buildtype-generator``: * ``host``: the buildbot host * ``os``: one of ``windows``, ``osx``, or ``linux`` * ``buildtype``: ``release`` or ``debug`` -* ``generator``: ``ninja``, ``makefiles``, or ``vs<year>`` +* ``generator``: ``ninja``, ``makefiles``, ``vs<year>``, + or ``lint-iwyu-tidy`` + +The special ``lint-<tools>`` generator name is a builder that builds +CMake using lint tools but does not run the test suite (so the actual +generator does not matter). .. _`buildbot`: http://buildbot.net .. _`CMake CDash Page`: https://open.cdash.org/index.php?project=CMake diff --git a/Help/variable/CMAKE_LANG_COMPILER_VERSION.rst b/Help/variable/CMAKE_LANG_COMPILER_VERSION.rst index 50e77eb..27b0cad 100644 --- a/Help/variable/CMAKE_LANG_COMPILER_VERSION.rst +++ b/Help/variable/CMAKE_LANG_COMPILER_VERSION.rst @@ -6,3 +6,7 @@ Compiler version string. Compiler version in major[.minor[.patch[.tweak]]] format. This variable is not guaranteed to be defined for all compilers or languages. + +For example ``CMAKE_C_COMPILER_VERSION`` and +``CMAKE_CXX_COMPILER_VERSION`` might indicate the respective C and C++ +compiler version. |