cmake/Help/command/ctest_configure.rst

51 lines
1.7 KiB
ReStructuredText
Raw Normal View History

2014-08-03 19:52:23 +02:00
ctest_configure
---------------
2015-08-17 11:37:30 +02:00
Perform the :ref:`CTest Configure Step` as a :ref:`Dashboard Client`.
2014-08-03 19:52:23 +02:00
2023-05-23 16:38:00 +02:00
.. code-block:: cmake
2014-08-03 19:52:23 +02:00
2015-08-17 11:37:30 +02:00
ctest_configure([BUILD <build-dir>] [SOURCE <source-dir>] [APPEND]
2016-10-30 18:24:19 +01:00
[OPTIONS <options>] [RETURN_VALUE <result-var>] [QUIET]
[CAPTURE_CMAKE_ERROR <result-var>])
2014-08-03 19:52:23 +02:00
2015-08-17 11:37:30 +02:00
Configure the project build tree and record results in ``Configure.xml``
for submission with the :command:`ctest_submit` command.
2014-08-03 19:52:23 +02:00
2015-08-17 11:37:30 +02:00
The options are:
``BUILD <build-dir>``
Specify the top-level build directory. If not given, the
:variable:`CTEST_BINARY_DIRECTORY` variable is used.
``SOURCE <source-dir>``
Specify the source directory. If not given, the
:variable:`CTEST_SOURCE_DIRECTORY` variable is used.
``APPEND``
2016-10-30 18:24:19 +01:00
Mark ``Configure.xml`` for append to results previously submitted to a
2015-08-17 11:37:30 +02:00
dashboard server since the last :command:`ctest_start` call.
Append semantics are defined by the dashboard server in use.
2016-10-30 18:24:19 +01:00
This does *not* cause results to be appended to a ``.xml`` file
produced by a previous call to this command.
2015-08-17 11:37:30 +02:00
``OPTIONS <options>``
Specify command-line arguments to pass to the configuration tool.
``RETURN_VALUE <result-var>``
Store in the ``<result-var>`` variable the return value of the native
configuration tool.
2016-10-30 18:24:19 +01:00
``CAPTURE_CMAKE_ERROR <result-var>``
2021-09-14 00:13:48 +02:00
.. versionadded:: 3.7
2016-10-30 18:24:19 +01:00
Store in the ``<result-var>`` variable -1 if there are any errors running
the command and prevent ctest from returning non-zero if an error occurs.
2015-08-17 11:37:30 +02:00
``QUIET``
2021-09-14 00:13:48 +02:00
.. versionadded:: 3.3
2015-08-17 11:37:30 +02:00
Suppress any CTest-specific non-error messages that would have
otherwise been printed to the console. Output from the underlying
configure command is not affected.