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. */
|
2015-11-17 17:22:37 +01:00
|
|
|
#ifndef cmQtAutoGeneratorInitializer_h
|
|
|
|
#define cmQtAutoGeneratorInitializer_h
|
|
|
|
|
2017-07-20 19:35:53 +02:00
|
|
|
#include "cmConfigure.h" // IWYU pragma: keep
|
2015-11-17 17:22:37 +01:00
|
|
|
|
2016-03-13 13:35:51 +01:00
|
|
|
class cmGeneratorTarget;
|
2015-11-17 17:22:37 +01:00
|
|
|
class cmLocalGenerator;
|
|
|
|
|
|
|
|
class cmQtAutoGeneratorInitializer
|
|
|
|
{
|
|
|
|
public:
|
2016-03-13 13:35:51 +01:00
|
|
|
static void InitializeAutogenSources(cmGeneratorTarget* target);
|
|
|
|
static void InitializeAutogenTarget(cmLocalGenerator* lg,
|
|
|
|
cmGeneratorTarget* target);
|
|
|
|
static void SetupAutoGenerateTarget(cmGeneratorTarget const* target);
|
2015-11-17 17:22:37 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|