cmLocalKdevelopGenerator.h 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  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 "cmLocalUnixMakefileGenerator3.h"
  17. class cmDependInformation;
  18. class cmMakeDepend;
  19. class cmTarget;
  20. class cmSourceFile;
  21. /** \class cmLocalKdevelopGenerator
  22. */
  23. class cmLocalKdevelopGenerator : public cmLocalUnixMakefileGenerator3
  24. {
  25. public:
  26. ///! Set cache only and recurse to false by default.
  27. cmLocalKdevelopGenerator();
  28. virtual ~cmLocalKdevelopGenerator();
  29. };
  30. #endif