cmPackageState.h 426 B

1234567891011121314151617
  1. /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
  2. file LICENSE.rst or https://cmake.org/licensing for details. */
  3. #pragma once
  4. #include "cmConfigure.h" // IWYU pragma: keep
  5. #include <string>
  6. #include <unordered_set>
  7. /** \class cmPackageState
  8. * \brief Information about the state of an imported package.
  9. */
  10. class cmPackageState
  11. {
  12. public:
  13. std::unordered_set<std::string> ImportedFiles;
  14. };