diff options
author | Justin Goshi <jgoshi@microsoft.com> | 2017-10-13 00:16:57 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2017-10-24 18:58:07 (GMT) |
commit | 296eb9ad4c36379c58e2a4461e765de329d23b5d (patch) | |
tree | da6ecb8d04f1f8b5b2eae3eb2c40e431b3d2f483 /Help/manual | |
parent | d0b6c2da8b7fda317e11c66a4b133d4a88eaeef6 (diff) | |
download | CMake-296eb9ad4c36379c58e2a4461e765de329d23b5d.zip CMake-296eb9ad4c36379c58e2a4461e765de329d23b5d.tar.gz CMake-296eb9ad4c36379c58e2a4461e765de329d23b5d.tar.bz2 |
cmake-server: Add target install destinations to codemodel
Protocol version is updated to 1.2 since this is a change
to what was released in cmake version 3.10.
Diffstat (limited to 'Help/manual')
-rw-r--r-- | Help/manual/cmake-server.7.rst | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Help/manual/cmake-server.7.rst b/Help/manual/cmake-server.7.rst index c56e5a7..389a6d5 100644 --- a/Help/manual/cmake-server.7.rst +++ b/Help/manual/cmake-server.7.rst @@ -458,6 +458,8 @@ Each project object can have the following keys: "name" contains the (sub-)projects name. +"hasInstallRule" + true if the project contains any install rules, false otherwise. "sourceDirectory" contains the current source directory "buildDirectory" @@ -481,6 +483,10 @@ Each target object can have the following keys: contains the current source directory. "buildDirectory" contains the current build directory. +"hasInstallRule" + true if the target contains any install rules, false otherwise. +"installPaths" + full path to the destination directories defined by target install rules. "artifacts" with a list of build artifacts. The list is sorted with the most important artifacts first (e.g. a .DLL file is listed before a |