From f777af7734f712e420159e099cbc96c3582c038c Mon Sep 17 00:00:00 2001 From: Martin Duffy Date: Tue, 11 Feb 2025 10:47:12 -0500 Subject: instrumentation: Update docs for available snippets --- Help/manual/cmake-instrumentation.7.rst | 19 +++++++++++-------- 1 file changed, 11 insertions(+), 8 deletions(-) diff --git a/Help/manual/cmake-instrumentation.7.rst b/Help/manual/cmake-instrumentation.7.rst index 677e639..b5431f7 100644 --- a/Help/manual/cmake-instrumentation.7.rst +++ b/Help/manual/cmake-instrumentation.7.rst @@ -251,14 +251,17 @@ and contain the following data: ``role`` The type of command executed, which will be one of the following values: - * ``compile`` - * ``link`` - * ``custom`` - * ``cmakeBuild`` - * ``build`` - * ``install`` - * ``ctest`` - * ``test`` + * ``configure``: the CMake configure step + * ``generate``: the CMake generate step + * ``compile``: an individual compile step invoked during the build + * ``link``: an individual link step invoked during the build + * ``custom``: an individual custom command invoked during the build + * ``build``: a complete ``make`` or ``ninja`` invocation. Only generated if ``preBuild`` or ``postBuild`` hooks are enabled. + * ``cmakeBuild``: a complete ``cmake --build`` invocation + * ``cmakeInstall``: a complete ``cmake --install`` invocation + * ``install``: an individual ``cmake -P cmake_install.cmake`` invocation + * ``ctest``: a complete ``ctest`` invocation + * ``test``: a single test executed by CTest ``target`` The CMake target associated with the command. Only included when ``role`` is -- cgit v0.12