2011-11-11 09:00:49 +04:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2011 Peter Collingbourne <peter@pcc.me.uk>
|
|
|
|
Copyright 2011 Nicolas Despres <nicolas.despres@gmail.com>
|
|
|
|
|
|
|
|
Distributed under the OSI-approved BSD License (the "License");
|
|
|
|
see accompanying file Copyright.txt for details.
|
|
|
|
|
|
|
|
This software is distributed WITHOUT ANY WARRANTY; without even the
|
|
|
|
implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
See the License for more information.
|
|
|
|
============================================================================*/
|
|
|
|
#ifndef cmNinjaUtilityTargetGenerator_h
|
2016-04-29 16:40:20 +03:00
|
|
|
#define cmNinjaUtilityTargetGenerator_h
|
2011-11-11 09:00:49 +04:00
|
|
|
|
2016-08-24 01:29:15 +03:00
|
|
|
#include <cmConfigure.h>
|
2016-04-29 16:40:20 +03:00
|
|
|
|
2016-08-24 01:29:15 +03:00
|
|
|
#include "cmNinjaTargetGenerator.h"
|
2011-11-11 09:00:49 +04:00
|
|
|
|
2016-08-24 01:29:15 +03:00
|
|
|
class cmGeneratorTarget;
|
2011-11-11 09:00:49 +04:00
|
|
|
|
|
|
|
class cmNinjaUtilityTargetGenerator : public cmNinjaTargetGenerator
|
|
|
|
{
|
|
|
|
public:
|
2012-10-10 23:32:37 +04:00
|
|
|
cmNinjaUtilityTargetGenerator(cmGeneratorTarget* target);
|
2016-06-27 22:25:27 +03:00
|
|
|
~cmNinjaUtilityTargetGenerator() CM_OVERRIDE;
|
2011-11-11 09:00:49 +04:00
|
|
|
|
2016-06-27 22:25:27 +03:00
|
|
|
void Generate() CM_OVERRIDE;
|
2011-11-11 09:00:49 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // ! cmNinjaUtilityTargetGenerator_h
|