cmJsonObjects.h 902 B

123456789101112131415161718192021222324252627
  1. /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
  2. file Copyright.txt or https://cmake.org/licensing for details. */
  3. #ifndef cmJsonObjects_h
  4. #define cmJsonObjects_h
  5. #include "cmConfigure.h" // IWYU pragma: keep
  6. #include "cm_jsoncpp_value.h"
  7. #include <string>
  8. #include <vector>
  9. class cmake;
  10. class cmGlobalGenerator;
  11. extern void cmGetCMakeInputs(const cmGlobalGenerator* gg,
  12. const std::string& sourceDir,
  13. const std::string& buildDir,
  14. std::vector<std::string>* internalFiles,
  15. std::vector<std::string>* explicitFiles,
  16. std::vector<std::string>* tmpFiles);
  17. extern Json::Value cmDumpCodeModel(const cmake* cm);
  18. extern Json::Value cmDumpCTestInfo(const cmake* cm);
  19. extern Json::Value cmDumpCMakeInputs(const cmake* cm);
  20. #endif