cmGhsMultiGpj.h 575 B

12345678910111213141516171819202122232425262728
  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 cmGhsMultiGpj_h
  4. #define cmGhsMultiGpj_h
  5. #include "cmConfigure.h" // IWYU pragma: keep
  6. #include <iosfwd>
  7. class GhsMultiGpj
  8. {
  9. public:
  10. enum Types
  11. {
  12. INTERGRITY_APPLICATION,
  13. LIBRARY,
  14. PROJECT,
  15. PROGRAM,
  16. REFERENCE,
  17. SUBPROJECT,
  18. CUSTOM_TARGET
  19. };
  20. static void WriteGpjTag(Types gpjType, std::ostream& fout);
  21. static const char* GetGpjTag(Types gpjType);
  22. };
  23. #endif // ! cmGhsMultiGpjType_h