2016-09-27 22:01:08 +03: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 20:05:00 +03:00
|
|
|
#ifndef cmQtAutoGeneratorInitializer_h
|
|
|
|
#define cmQtAutoGeneratorInitializer_h
|
|
|
|
|
2016-09-01 21:59:28 +03:00
|
|
|
#include <cmConfigure.h> // IWYU pragma: keep
|
2016-09-01 21:05:48 +03:00
|
|
|
|
2015-10-05 20:21:30 +03:00
|
|
|
class cmGeneratorTarget;
|
2015-09-26 20:05:00 +03:00
|
|
|
class cmLocalGenerator;
|
|
|
|
|
|
|
|
class cmQtAutoGeneratorInitializer
|
|
|
|
{
|
|
|
|
public:
|
2015-10-05 20:21:30 +03:00
|
|
|
static void InitializeAutogenSources(cmGeneratorTarget* target);
|
|
|
|
static void InitializeAutogenTarget(cmLocalGenerator* lg,
|
|
|
|
cmGeneratorTarget* target);
|
|
|
|
static void SetupAutoGenerateTarget(cmGeneratorTarget const* target);
|
2015-09-26 20:05:00 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|