diff options
author | Brad King <brad.king@kitware.com> | 2023-12-19 13:11:36 (GMT) |
---|---|---|
committer | Kitware Robot <kwrobot@kitware.com> | 2023-12-19 13:11:48 (GMT) |
commit | bee73bce083565369a22ac2558dbc7d68354e476 (patch) | |
tree | 3faf44274eb05e92f0ee14379a5f1be280d212a6 /Help | |
parent | c3b4453b13b853268ba875cda5e3f3d10830f1a4 (diff) | |
parent | 6d962f37006edb831a88298f127e3538f985785f (diff) | |
download | CMake-bee73bce083565369a22ac2558dbc7d68354e476.zip CMake-bee73bce083565369a22ac2558dbc7d68354e476.tar.gz CMake-bee73bce083565369a22ac2558dbc7d68354e476.tar.bz2 |
Merge topic 'doc-fileapi-launchers'
6d962f3700 Help: Fix indentation level in fileapi docs for target attribute 'launchers'
Acked-by: Kitware Robot <kwrobot@kitware.com>
Merge-request: !9084
Diffstat (limited to 'Help')
-rw-r--r-- | Help/manual/cmake-file-api.7.rst | 46 |
1 files changed, 23 insertions, 23 deletions
diff --git a/Help/manual/cmake-file-api.7.rst b/Help/manual/cmake-file-api.7.rst index fd28dbe..c249ee2 100644 --- a/Help/manual/cmake-file-api.7.rst +++ b/Help/manual/cmake-file-api.7.rst @@ -998,35 +998,35 @@ with members: destination is available. The value is an unsigned integer 0-based index into the ``backtraceGraph`` member's ``nodes`` array. - ``launchers`` - Optional member that is present on executable targets that have - at least one launcher specified by the project. The value is a - JSON array of entries corresponding to the specified launchers. - Each entry is a JSON object with members: +``launchers`` + Optional member that is present on executable targets that have + at least one launcher specified by the project. The value is a + JSON array of entries corresponding to the specified launchers. + Each entry is a JSON object with members: - ``command`` - A string specifying the path to the launcher on disk, represented - with forward slashes. If the file is inside the top-level source - directory then the path is specified relative to that directory. + ``command`` + A string specifying the path to the launcher on disk, represented + with forward slashes. If the file is inside the top-level source + directory then the path is specified relative to that directory. - ``arguments`` - Optional member that is present when the launcher command has - arguments preceding the executable to be launched. The value - is a JSON array of strings representing the arguments. + ``arguments`` + Optional member that is present when the launcher command has + arguments preceding the executable to be launched. The value + is a JSON array of strings representing the arguments. - ``type`` - A string specifying the type of launcher. The value is one of - the following: + ``type`` + A string specifying the type of launcher. The value is one of + the following: - ``emulator`` - An emulator for the target platform when cross-compiling. - See the :prop_tgt:`CROSSCOMPILING_EMULATOR` target property. + ``emulator`` + An emulator for the target platform when cross-compiling. + See the :prop_tgt:`CROSSCOMPILING_EMULATOR` target property. - ``test`` - A start program for the execution of tests. - See the :prop_tgt:`TEST_LAUNCHER` target property. + ``test`` + A start program for the execution of tests. + See the :prop_tgt:`TEST_LAUNCHER` target property. - This field was added in codemodel version 2.7. + This field was added in codemodel version 2.7. ``link`` Optional member that is present for executables and shared library |