diff options
author | Brad King <brad.king@kitware.com> | 2019-06-07 14:22:34 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2019-06-07 15:08:38 (GMT) |
commit | c932f498426609beb14b9339c2a7dec3ea624998 (patch) | |
tree | 42e9db048344d39a576abe368dd111ba2f4afa4d /Source/cmFileAPI.h | |
parent | 6696855f72adebbb40d475c39dace1e9f855ca2a (diff) | |
download | CMake-c932f498426609beb14b9339c2a7dec3ea624998.zip CMake-c932f498426609beb14b9339c2a7dec3ea624998.tar.gz CMake-c932f498426609beb14b9339c2a7dec3ea624998.tar.bz2 |
cmake: Teach -E capabilities to report supported fileapi requests
Fixes: #19339
Diffstat (limited to 'Source/cmFileAPI.h')
-rw-r--r-- | Source/cmFileAPI.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Source/cmFileAPI.h b/Source/cmFileAPI.h index 1315532..602efa8 100644 --- a/Source/cmFileAPI.h +++ b/Source/cmFileAPI.h @@ -36,6 +36,9 @@ public: and holding the original object. Other JSON types are unchanged. */ Json::Value MaybeJsonFile(Json::Value in, std::string const& prefix); + /** Report file-api capabilities for cmake -E capabilities. */ + static Json::Value ReportCapabilities(); + private: cmake* CMakeInstance; |