resolve cyclic dependency with zstd
[platform/upstream/cmake.git] / Source / cmGhsMultiGpj.h
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
5 #include "cmConfigure.h" // IWYU pragma: keep
6
7 #include <iosfwd>
8
9 class GhsMultiGpj
10 {
11 public:
12   enum Types
13   {
14     INTERGRITY_APPLICATION,
15     LIBRARY,
16     PROJECT,
17     PROGRAM,
18     REFERENCE,
19     SUBPROJECT,
20     CUSTOM_TARGET
21   };
22
23   static void WriteGpjTag(Types gpjType, std::ostream& fout);
24
25   static const char* GetGpjTag(Types gpjType);
26 };