https://github.com/Kitware/CMake
Revision b0566f62eb9de7d1baaf3d3d4bcdaea547e8ca86 authored by Brad King on 27 August 2019, 14:11:06 UTC, committed by Brad King on 27 August 2019, 14:11:06 UTC
2 parent s 290ab79 + d040f3f
Raw File
Tip revision: b0566f62eb9de7d1baaf3d3d4bcdaea547e8ca86 authored by Brad King on 27 August 2019, 14:11:06 UTC
Merge branch 'ninja_additional_clean_files_custom_target' into release-3.15
Tip revision: b0566f6
cmMakefileUtilityTargetGenerator.h
/* Distributed under the OSI-approved BSD 3-Clause License.  See accompanying
   file Copyright.txt or https://cmake.org/licensing for details.  */
#ifndef cmMakefileUtilityTargetGenerator_h
#define cmMakefileUtilityTargetGenerator_h

#include "cmConfigure.h" // IWYU pragma: keep

#include "cmMakefileTargetGenerator.h"

class cmGeneratorTarget;

class cmMakefileUtilityTargetGenerator : public cmMakefileTargetGenerator
{
public:
  cmMakefileUtilityTargetGenerator(cmGeneratorTarget* target);
  ~cmMakefileUtilityTargetGenerator() override;

  /* the main entry point for this class. Writes the Makefiles associated
     with this target */
  void WriteRuleFiles() override;

protected:
};

#endif
back to top