2016-09-27 15:01:08 -04:00
|
|
|
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
|
|
|
file Copyright.txt or https://cmake.org/licensing for details. */
|
2015-09-26 19:05:00 +02:00
|
|
|
#ifndef cmQtAutoGeneratorInitializer_h
|
|
|
|
#define cmQtAutoGeneratorInitializer_h
|
|
|
|
|
2016-09-01 20:59:28 +02:00
|
|
|
#include <cmConfigure.h> // IWYU pragma: keep
|
2016-09-01 20:05:48 +02:00
|
|
|
|
2015-10-05 19:21:30 +02:00
|
|
|
class cmGeneratorTarget;
|
2015-09-26 19:05:00 +02:00
|
|
|
class cmLocalGenerator;
|
|
|
|
|
|
|
|
class cmQtAutoGeneratorInitializer
|
|
|
|
{
|
|
|
|
public:
|
2015-10-05 19:21:30 +02:00
|
|
|
static void InitializeAutogenSources(cmGeneratorTarget* target);
|
|
|
|
static void InitializeAutogenTarget(cmLocalGenerator* lg,
|
|
|
|
cmGeneratorTarget* target);
|
|
|
|
static void SetupAutoGenerateTarget(cmGeneratorTarget const* target);
|
2015-09-26 19:05:00 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|