cmJsonObjects.h 858 B

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