cmake/Source/cmNinjaUtilityTargetGenerator.h

22 lines
584 B
C
Raw Normal View History

2016-10-30 18:24:19 +01:00
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
file Copyright.txt or https://cmake.org/licensing for details. */
2012-04-19 19:04:21 +03:00
#ifndef cmNinjaUtilityTargetGenerator_h
2016-07-09 11:21:54 +02:00
#define cmNinjaUtilityTargetGenerator_h
2012-04-19 19:04:21 +03:00
2016-10-30 18:24:19 +01:00
#include <cmConfigure.h>
2016-07-09 11:21:54 +02:00
2016-10-30 18:24:19 +01:00
#include "cmNinjaTargetGenerator.h"
2012-04-19 19:04:21 +03:00
2016-10-30 18:24:19 +01:00
class cmGeneratorTarget;
2012-04-19 19:04:21 +03:00
class cmNinjaUtilityTargetGenerator : public cmNinjaTargetGenerator
{
public:
2014-08-03 19:52:23 +02:00
cmNinjaUtilityTargetGenerator(cmGeneratorTarget* target);
2016-10-30 18:24:19 +01:00
~cmNinjaUtilityTargetGenerator() CM_OVERRIDE;
2012-04-19 19:04:21 +03:00
2016-10-30 18:24:19 +01:00
void Generate() CM_OVERRIDE;
2012-04-19 19:04:21 +03:00
};
#endif // ! cmNinjaUtilityTargetGenerator_h