cmLocalKdevelopGenerator.h 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. /*=========================================================================
  2. Program: CMake - Cross-Platform Makefile Generator
  3. Module: $RCSfile$
  4. Language: C++
  5. Date: $Date$
  6. Version: $Revision$
  7. Copyright (c) 2002 Kitware, Inc., Insight Consortium. All rights reserved.
  8. Copyright (c) 2004 Alexander Neundorf, [email protected]. All rights reserved.
  9. See Copyright.txt or http://www.cmake.org/HTML/Copyright.html for details.
  10. This software is distributed WITHOUT ANY WARRANTY; without even
  11. the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
  12. PURPOSE. See the above copyright notices for more information.
  13. =========================================================================*/
  14. #ifndef cmLocalKdevelopGenerator_h
  15. #define cmLocalKdevelopGenerator_h
  16. #include "cmLocalUnixMakefileGenerator.h"
  17. class cmDependInformation;
  18. class cmMakeDepend;
  19. class cmTarget;
  20. class cmSourceFile;
  21. /** \class cmLocalKdevelopGenerator
  22. */
  23. class cmLocalKdevelopGenerator : public cmLocalUnixMakefileGenerator
  24. {
  25. public:
  26. ///! Set cache only and recurse to false by default.
  27. cmLocalKdevelopGenerator();
  28. virtual ~cmLocalKdevelopGenerator();
  29. virtual void Generate(bool fromTheTop);
  30. };
  31. #endif