2016-09-27 19:01:08 +00:00
|
|
|
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
|
|
|
file Copyright.txt or https://cmake.org/licensing for details. */
|
2015-03-24 05:12:55 +00:00
|
|
|
#ifndef cmGhsMultiGpj_h
|
|
|
|
#define cmGhsMultiGpj_h
|
|
|
|
|
2017-08-25 18:39:02 +00:00
|
|
|
#include "cmConfigure.h" // IWYU pragma: keep
|
2019-09-30 14:46:28 +00:00
|
|
|
|
2019-01-05 16:01:22 +00:00
|
|
|
#include <iosfwd>
|
2016-09-01 18:05:48 +00:00
|
|
|
|
2015-03-24 05:12:55 +00:00
|
|
|
class GhsMultiGpj
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
enum Types
|
|
|
|
{
|
|
|
|
INTERGRITY_APPLICATION,
|
|
|
|
LIBRARY,
|
|
|
|
PROJECT,
|
|
|
|
PROGRAM,
|
|
|
|
REFERENCE,
|
2019-04-08 13:55:34 +00:00
|
|
|
SUBPROJECT,
|
|
|
|
CUSTOM_TARGET
|
2015-03-24 05:12:55 +00:00
|
|
|
};
|
|
|
|
|
2019-03-20 13:43:14 +00:00
|
|
|
static void WriteGpjTag(Types gpjType, std::ostream& fout);
|
2019-01-05 16:01:21 +00:00
|
|
|
|
2019-03-20 13:43:14 +00:00
|
|
|
static const char* GetGpjTag(Types gpjType);
|
2015-03-24 05:12:55 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // ! cmGhsMultiGpjType_h
|