cmLocalGhsMultiGenerator.h 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. /*============================================================================
  2. CMake - Cross Platform Makefile Generator
  3. Copyright 2015 Geoffrey Viola <[email protected]>
  4. Distributed under the OSI-approved BSD License (the "License");
  5. see accompanying file Copyright.txt for details.
  6. This software is distributed WITHOUT ANY WARRANTY; without even the
  7. implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  8. See the License for more information.
  9. ============================================================================*/
  10. #ifndef cmLocalGhsMultiGenerator_h
  11. #define cmLocalGhsMultiGenerator_h
  12. #include "cmLocalGenerator.h"
  13. class cmGeneratedFileStream;
  14. /** \class cmLocalGhsMultiGenerator
  15. * \brief Write Green Hills MULTI project files.
  16. *
  17. * cmLocalGhsMultiGenerator produces a set of .gpj
  18. * file for each target in its mirrored directory.
  19. */
  20. class cmLocalGhsMultiGenerator : public cmLocalGenerator
  21. {
  22. public:
  23. cmLocalGhsMultiGenerator(cmGlobalGenerator* gg,
  24. cmState::Snapshot snapshot);
  25. virtual ~cmLocalGhsMultiGenerator();
  26. /**
  27. * Generate the makefile for this directory.
  28. */
  29. virtual void Generate();
  30. };
  31. #endif