[Cmake-commits] CMake branch, next, updated. v3.2.2-2597-gd186a17

Ben Boeckel ben.boeckel at kitware.com
Thu May 7 13:06:07 EDT 2015


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "CMake".

The branch, next has been updated
       via  d186a17dcfc4c5950ccba09408f434dde606af59 (commit)
       via  5731fb2e5e30747a46b1e328539310d059115ad9 (commit)
       via  753da8c6f14f68d59978b63a57c343c7f0dec72f (commit)
       via  5ab896aede1efc0cd35ae73f0a9b400258fcad09 (commit)
      from  fd1cf6da106a1f77e5d7b0c79c1c01677d41385f (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=d186a17dcfc4c5950ccba09408f434dde606af59
commit d186a17dcfc4c5950ccba09408f434dde606af59
Merge: fd1cf6d 5731fb2
Author:     Ben Boeckel <ben.boeckel at kitware.com>
AuthorDate: Thu May 7 13:06:05 2015 -0400
Commit:     CMake Topic Stage <kwrobot at kitware.com>
CommitDate: Thu May 7 13:06:05 2015 -0400

    Merge topic 'update-ctest_build-docs' into next
    
    5731fb2e ctest_build: mention CTEST_BUILD_COMMAND in the docs
    753da8c6 ctest_build: update the default target documentation
    5ab896ae ctest_build: spruce up the documentation a bit


http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=5731fb2e5e30747a46b1e328539310d059115ad9
commit 5731fb2e5e30747a46b1e328539310d059115ad9
Author:     Ben Boeckel <ben.boeckel at kitware.com>
AuthorDate: Thu May 7 13:05:30 2015 -0400
Commit:     Ben Boeckel <ben.boeckel at kitware.com>
CommitDate: Thu May 7 13:05:54 2015 -0400

    ctest_build: mention CTEST_BUILD_COMMAND in the docs

diff --git a/Help/command/ctest_build.rst b/Help/command/ctest_build.rst
index 2c3cfa8..5c0a4e9 100644
--- a/Help/command/ctest_build.rst
+++ b/Help/command/ctest_build.rst
@@ -29,7 +29,8 @@ that would have been printed to the console otherwise.  The summary
 of warnings / errors, as well as the output from the native build tool
 is unaffected by this option.
 
-If set, the contents of the variable ``CTEST_BUILD_FLAGS`` are passed as
-additional arguments to the underlying build command. This can, e.g., be used
-to trigger a parallel build using the ``-j`` option of make. See
-:module:`ProcessorCount` for an example.
+If set, the contents of the variable ``CTEST_BUILD_COMMAND`` is used to build
+the project. In addition, if set, the contents of the variable
+``CTEST_BUILD_FLAGS`` are passed as additional arguments to the underlying
+build command. This can, e.g., be used to trigger a parallel build using the
+``-j`` option of make. See :module:`ProcessorCount` for an example.

http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=753da8c6f14f68d59978b63a57c343c7f0dec72f
commit 753da8c6f14f68d59978b63a57c343c7f0dec72f
Author:     Ben Boeckel <ben.boeckel at kitware.com>
AuthorDate: Thu May 7 13:05:15 2015 -0400
Commit:     Ben Boeckel <ben.boeckel at kitware.com>
CommitDate: Thu May 7 13:05:54 2015 -0400

    ctest_build: update the default target documentation

diff --git a/Help/command/ctest_build.rst b/Help/command/ctest_build.rst
index 7c9029e..2c3cfa8 100644
--- a/Help/command/ctest_build.rst
+++ b/Help/command/ctest_build.rst
@@ -12,7 +12,8 @@ Builds the given build directory and stores results in Build.xml.  If no
 ``BUILD`` is given, the :variable:`CTEST_BINARY_DIRECTORY` variable is used.
 
 The ``TARGET`` variable can be used to specify a build target.  If none is
-specified, the "all" target will be built.
+specified, the default target ("ALL_BUILD" for Visual Studio generators and
+"all" in others) will be built.
 
 The ``RETURN_VALUE`` option specifies a variable in which to store the
 return value of the native build tool.  The ``NUMBER_ERRORS`` and

http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=5ab896aede1efc0cd35ae73f0a9b400258fcad09
commit 5ab896aede1efc0cd35ae73f0a9b400258fcad09
Author:     Ben Boeckel <ben.boeckel at kitware.com>
AuthorDate: Thu May 7 13:04:21 2015 -0400
Commit:     Ben Boeckel <ben.boeckel at kitware.com>
CommitDate: Thu May 7 13:05:54 2015 -0400

    ctest_build: spruce up the documentation a bit
    
    Adds markup and links to other sections.

diff --git a/Help/command/ctest_build.rst b/Help/command/ctest_build.rst
index e7a54d1..7c9029e 100644
--- a/Help/command/ctest_build.rst
+++ b/Help/command/ctest_build.rst
@@ -8,27 +8,27 @@ Build the project.
   ctest_build([BUILD build_dir] [TARGET target] [RETURN_VALUE res]
               [APPEND][NUMBER_ERRORS val] [NUMBER_WARNINGS val])
 
-Builds the given build directory and stores results in Build.xml.  If
-no BUILD is given, the CTEST_BINARY_DIRECTORY variable is used.
+Builds the given build directory and stores results in Build.xml.  If no
+``BUILD`` is given, the :variable:`CTEST_BINARY_DIRECTORY` variable is used.
 
-The TARGET variable can be used to specify a build target.  If none is
+The ``TARGET`` variable can be used to specify a build target.  If none is
 specified, the "all" target will be built.
 
-The RETURN_VALUE option specifies a variable in which to store the
-return value of the native build tool.  The NUMBER_ERRORS and
-NUMBER_WARNINGS options specify variables in which to store the number
+The ``RETURN_VALUE`` option specifies a variable in which to store the
+return value of the native build tool.  The ``NUMBER_ERRORS`` and
+``NUMBER_WARNINGS`` options specify variables in which to store the number
 of build errors and warnings detected.
 
-The APPEND option marks results for append to those previously
-submitted to a dashboard server since the last ctest_start.  Append
+The ``APPEND`` option marks results for append to those previously
+submitted to a dashboard server since the last :command:`ctest_start`.  Append
 semantics are defined by the dashboard server in use.
 
-The QUIET option suppresses any CTest-specific non-error output
+The ``QUIET`` option suppresses any CTest-specific non-error output
 that would have been printed to the console otherwise.  The summary
 of warnings / errors, as well as the output from the native build tool
 is unaffected by this option.
 
-If set, the contents of the variable CTEST_BUILD_FLAGS are passed as
-additional arguments to the underlying build command. This can e.g. be
-used to trigger a parallel build using the -j option of make. See
+If set, the contents of the variable ``CTEST_BUILD_FLAGS`` are passed as
+additional arguments to the underlying build command. This can, e.g., be used
+to trigger a parallel build using the ``-j`` option of make. See
 :module:`ProcessorCount` for an example.

-----------------------------------------------------------------------

Summary of changes:
 Help/command/ctest_build.rst |   30 ++++++++++++++++--------------
 1 file changed, 16 insertions(+), 14 deletions(-)


hooks/post-receive
-- 
CMake


More information about the Cmake-commits mailing list