cmCheckCustomOutputs.h 502 B

123456789101112131415161718
  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 cmCheckCustomOutputs_h
  4. #define cmCheckCustomOutputs_h
  5. #include "cmConfigure.h" // IWYU pragma: keep
  6. #include <cm/string_view>
  7. #include <string>
  8. #include <vector>
  9. class cmExecutionStatus;
  10. bool cmCheckCustomOutputs(const std::vector<std::string>& outputs,
  11. cm::string_view keyword, cmExecutionStatus& status);
  12. #endif