cmQtAutoGeneratorInitializer.h 1.1 KB

123456789101112131415161718192021222324252627282930313233343536
  1. /*============================================================================
  2. CMake - Cross Platform Makefile Generator
  3. Copyright 2004-2011 Kitware, Inc.
  4. Copyright 2011 Alexander Neundorf ([email protected])
  5. Distributed under the OSI-approved BSD License (the "License");
  6. see accompanying file Copyright.txt for details.
  7. This software is distributed WITHOUT ANY WARRANTY; without even the
  8. implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  9. See the License for more information.
  10. ============================================================================*/
  11. #ifndef cmQtAutoGeneratorInitializer_h
  12. #define cmQtAutoGeneratorInitializer_h
  13. #include "cmStandardIncludes.h"
  14. #include <string>
  15. #include <vector>
  16. #include <map>
  17. class cmSourceFile;
  18. class cmGeneratorTarget;
  19. class cmLocalGenerator;
  20. class cmQtAutoGeneratorInitializer
  21. {
  22. public:
  23. static void InitializeAutogenSources(cmGeneratorTarget* target);
  24. static void InitializeAutogenTarget(cmLocalGenerator* lg,
  25. cmGeneratorTarget* target);
  26. static void SetupAutoGenerateTarget(cmGeneratorTarget const* target);
  27. };
  28. #endif