diff options
| author | Ben McMorran <bemcmorr@microsoft.com> | 2021-01-08 00:47:23 (GMT) |
|---|---|---|
| committer | Ben McMorran <bemcmorr@microsoft.com> | 2021-01-12 19:21:19 (GMT) |
| commit | bb069c08571b5dab3488342b03cc4e5705b3a0e2 (patch) | |
| tree | 2d96108425b3616681d2ba09d32f58f42339e9d3 /Source/cmFileAPI.h | |
| parent | 1c9b61c23edb8200400ac77585f94ccd9fe0e58f (diff) | |
| download | CMake-bb069c08571b5dab3488342b03cc4e5705b3a0e2.zip CMake-bb069c08571b5dab3488342b03cc4e5705b3a0e2.tar.gz CMake-bb069c08571b5dab3488342b03cc4e5705b3a0e2.tar.bz2 | |
cmFileAPI: Add "toolchains" object kind.
Fixes #19514
Diffstat (limited to 'Source/cmFileAPI.h')
| -rw-r--r-- | Source/cmFileAPI.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Source/cmFileAPI.h b/Source/cmFileAPI.h index 086a92a..22302b4 100644 --- a/Source/cmFileAPI.h +++ b/Source/cmFileAPI.h @@ -56,6 +56,7 @@ private: CodeModel, Cache, CMakeFiles, + Toolchains, InternalTest }; @@ -200,6 +201,10 @@ private: ClientRequest& r, std::vector<RequestVersion> const& versions); Json::Value BuildCMakeFiles(Object const& object); + void BuildClientRequestToolchains( + ClientRequest& r, std::vector<RequestVersion> const& versions); + Json::Value BuildToolchains(Object const& object); + void BuildClientRequestInternalTest( ClientRequest& r, std::vector<RequestVersion> const& versions); Json::Value BuildInternalTest(Object const& object); |
