mirror of
https://github.com/reactos/CMake.git
synced 2024-12-14 07:09:22 +00:00
1d829c862c
Automate with: git grep -l '#include <cm_' -- Source \ | xargs sed -i 's/#include <\(cm_.*\)>/#include "\1"/g' git grep -l '#include <cmsys/' -- Source \ | xargs sed -i 's/#include <\(cmsys\/.*\)>/#include "\1"/g' git grep -l '#include <cm[A-Z]' -- Source \ | xargs sed -i 's/#include <\(cm[A-Z].*\)>/#include "\1"/g'
28 lines
546 B
C++
28 lines
546 B
C++
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
|
file Copyright.txt or https://cmake.org/licensing for details. */
|
|
#ifndef cmGhsMultiGpj_h
|
|
#define cmGhsMultiGpj_h
|
|
|
|
#include "cmConfigure.h"
|
|
|
|
class cmGeneratedFileStream;
|
|
|
|
class GhsMultiGpj
|
|
{
|
|
public:
|
|
enum Types
|
|
{
|
|
INTERGRITY_APPLICATION,
|
|
LIBRARY,
|
|
PROJECT,
|
|
PROGRAM,
|
|
REFERENCE,
|
|
SUBPROJECT
|
|
};
|
|
|
|
static void WriteGpjTag(Types const gpjType,
|
|
cmGeneratedFileStream* filestream);
|
|
};
|
|
|
|
#endif // ! cmGhsMultiGpjType_h
|