cmGhsMultiGpj.h 507 B

1234567891011121314151617181920212223242526
  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 <iosfwd>
  6. class GhsMultiGpj
  7. {
  8. public:
  9. enum Types
  10. {
  11. INTEGRITY_APPLICATION,
  12. LIBRARY,
  13. PROJECT,
  14. PROGRAM,
  15. REFERENCE,
  16. SUBPROJECT,
  17. CUSTOM_TARGET
  18. };
  19. static void WriteGpjTag(Types gpjType, std::ostream& fout);
  20. static const char* GetGpjTag(Types gpjType);
  21. };