cmGlobalBorlandMakefileGenerator.h 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. /*=========================================================================
  2. Program: Insight Segmentation & Registration Toolkit
  3. Module: $RCSfile$
  4. Language: C++
  5. Date: $Date$
  6. Version: $Revision$
  7. Copyright (c) 2002 Insight Consortium. All rights reserved.
  8. See ITKCopyright.txt or http://www.itk.org/HTML/Copyright.htm for details.
  9. This software is distributed WITHOUT ANY WARRANTY; without even
  10. the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
  11. PURPOSE. See the above copyright notices for more information.
  12. =========================================================================*/
  13. #ifndef cmGlobalBorlandMakefileGenerator_h
  14. #define cmGlobalBorlandMakefileGenerator_h
  15. #include "cmGlobalNMakeMakefileGenerator.h"
  16. /** \class cmGlobalBorlandMakefileGenerator
  17. * \brief Write a Borland makefiles.
  18. *
  19. * cmGlobalBorlandMakefileGenerator manages nmake build process for a tree
  20. */
  21. class cmGlobalBorlandMakefileGenerator : public cmGlobalNMakeMakefileGenerator
  22. {
  23. public:
  24. ///! Get the name for the generator.
  25. virtual const char* GetName() {
  26. return cmGlobalBorlandMakefileGenerator::GetActualName();}
  27. static const char* GetActualName() {return "Borland Makefiles";}
  28. ///! Create a local generator appropriate to this Global Generator
  29. virtual cmLocalGenerator *CreateLocalGenerator();
  30. /**
  31. * Try to determine system infomation such as shared library
  32. * extension, pthreads, byte order etc.
  33. */
  34. virtual void EnableLanguage(const char*,cmMakefile *mf);
  35. };
  36. #endif