diff options
author | Brad King <brad.king@kitware.com> | 2018-11-01 13:45:54 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2018-12-12 14:46:13 (GMT) |
commit | 6615408193aa542833ef34c902a35831bd85d25a (patch) | |
tree | d49dfcfee3ff655dba5bec0adb7774bf005bb421 /Source/cmFileAPI.h | |
parent | 3f6ee75a66042370fe48833bcd5c712448ec59c0 (diff) | |
download | CMake-6615408193aa542833ef34c902a35831bd85d25a.zip CMake-6615408193aa542833ef34c902a35831bd85d25a.tar.gz CMake-6615408193aa542833ef34c902a35831bd85d25a.tar.bz2 |
fileapi: add cmakeFiles v1
Issue: #18398
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 20aa011..341b072 100644 --- a/Source/cmFileAPI.h +++ b/Source/cmFileAPI.h @@ -53,6 +53,7 @@ private: { CodeModel, Cache, + CMakeFiles, InternalTest }; @@ -191,6 +192,10 @@ private: std::vector<RequestVersion> const& versions); Json::Value BuildCache(Object const& object); + void BuildClientRequestCMakeFiles( + ClientRequest& r, std::vector<RequestVersion> const& versions); + Json::Value BuildCMakeFiles(Object const& object); + void BuildClientRequestInternalTest( ClientRequest& r, std::vector<RequestVersion> const& versions); Json::Value BuildInternalTest(Object const& object); |