2009-09-28 19:43:28 +04:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
|
2006-02-14 18:36:04 +03:00
|
|
|
|
2009-09-28 19:43:28 +04:00
|
|
|
Distributed under the OSI-approved BSD License (the "License");
|
|
|
|
see accompanying file Copyright.txt for details.
|
2006-02-14 18:36:04 +03:00
|
|
|
|
2009-09-28 19:43:28 +04:00
|
|
|
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.
|
|
|
|
============================================================================*/
|
2006-02-14 18:36:04 +03:00
|
|
|
#ifndef cmMakefileUtilityTargetGenerator_h
|
|
|
|
#define cmMakefileUtilityTargetGenerator_h
|
|
|
|
|
|
|
|
#include "cmMakefileTargetGenerator.h"
|
|
|
|
|
2012-07-21 21:51:55 +04:00
|
|
|
class cmMakefileUtilityTargetGenerator:
|
2006-02-14 18:36:04 +03:00
|
|
|
public cmMakefileTargetGenerator
|
|
|
|
{
|
|
|
|
public:
|
2012-10-10 23:32:37 +04:00
|
|
|
cmMakefileUtilityTargetGenerator(cmGeneratorTarget* target);
|
2012-07-21 21:51:55 +04:00
|
|
|
virtual ~cmMakefileUtilityTargetGenerator();
|
2007-03-02 22:31:04 +03:00
|
|
|
|
2006-02-14 18:36:04 +03:00
|
|
|
/* the main entry point for this class. Writes the Makefiles associated
|
|
|
|
with this target */
|
2012-07-21 21:51:55 +04:00
|
|
|
virtual void WriteRuleFiles();
|
|
|
|
|
2006-02-14 18:36:04 +03:00
|
|
|
protected:
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|