Resync
[CMakeLuaTailorHgBridge.git] / CMakeLua / Source / cmInstallScriptGenerator.h
blob93188414959e5265ea9bfc883bf5aac67320dcd3
1 /*=========================================================================
3 Program: CMake - Cross-Platform Makefile Generator
4 Module: $RCSfile: cmInstallScriptGenerator.h,v $
5 Language: C++
6 Date: $Date: 2007/10/15 11:08:10 $
7 Version: $Revision: 1.3 $
9 Copyright (c) 2002 Kitware, Inc., Insight Consortium. All rights reserved.
10 See Copyright.txt or http://www.cmake.org/HTML/Copyright.html for details.
12 This software is distributed WITHOUT ANY WARRANTY; without even
13 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
14 PURPOSE. See the above copyright notices for more information.
16 =========================================================================*/
17 #ifndef cmInstallScriptGenerator_h
18 #define cmInstallScriptGenerator_h
20 #include "cmInstallGenerator.h"
22 /** \class cmInstallScriptGenerator
23 * \brief Generate target installation rules.
25 class cmInstallScriptGenerator: public cmInstallGenerator
27 public:
28 cmInstallScriptGenerator(const char* script, bool code,
29 const char* component);
30 virtual ~cmInstallScriptGenerator();
32 protected:
33 virtual void GenerateScript(std::ostream& os);
34 std::string Script;
35 bool Code;
38 #endif