cmLocalGhsMultiGenerator.h 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738
  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, cmMakefile* mf);
  24. virtual ~cmLocalGhsMultiGenerator();
  25. /**
  26. * Generate the makefile for this directory.
  27. */
  28. virtual void Generate();
  29. };
  30. #endif