diff options
author | Justin Goshi <jgoshi@microsoft.com> | 2017-11-14 21:42:32 (GMT) |
---|---|---|
committer | Justin Goshi <jgoshi@microsoft.com> | 2017-11-17 17:19:26 (GMT) |
commit | fe2c2b0ffb567ca7d51036c69845091f70736a50 (patch) | |
tree | 4a61f5a8062b3e737bd8bea228b5309cb60148f4 /Help/manual/cmake-server.7.rst | |
parent | d23a0c4d0e35d50f8f3f1a950a68df576294a77a (diff) | |
download | CMake-fe2c2b0ffb567ca7d51036c69845091f70736a50.zip CMake-fe2c2b0ffb567ca7d51036c69845091f70736a50.tar.gz CMake-fe2c2b0ffb567ca7d51036c69845091f70736a50.tar.bz2 |
server: ctestInfo fix to return all tests
Prior to this change we were looking at targets. But tests are
associated with directories. This change fixes how we gather all tests.
Diffstat (limited to 'Help/manual/cmake-server.7.rst')
-rw-r--r-- | Help/manual/cmake-server.7.rst | 19 |
1 files changed, 1 insertions, 18 deletions
diff --git a/Help/manual/cmake-server.7.rst b/Help/manual/cmake-server.7.rst index ee8fada..b373456 100644 --- a/Help/manual/cmake-server.7.rst +++ b/Help/manual/cmake-server.7.rst @@ -656,25 +656,8 @@ Each project object can have the following keys: "name" contains the (sub-)projects name. -"targets" - contains a list of build system target objects. - -Target objects define individual build targets for a certain configuration. - -Each target object can have the following keys: - -"name" - contains the name of the target. -"type" - defines the type of build of the target. Possible values are - "STATIC_LIBRARY", "MODULE_LIBRARY", "SHARED_LIBRARY", "OBJECT_LIBRARY", - "EXECUTABLE", "UTILITY" and "INTERFACE_LIBRARY". -"fullName" - contains the full name of the build result (incl. extensions, etc.). -"hasEnabledTests" - true if testing is enabled for this target. "ctestInfo" - contains a list of test objects for this target. + contains a list of test objects. Each test object can have the following keys: |