Imported Upstream version 2.8.12.2
[platform/upstream/cmake.git] / Source / cmCustomCommandGenerator.h
1 /*============================================================================
2   CMake - Cross Platform Makefile Generator
3   Copyright 2000-2010 Kitware, Inc., Insight Software Consortium
4
5   Distributed under the OSI-approved BSD License (the "License");
6   see accompanying file Copyright.txt for details.
7
8   This software is distributed WITHOUT ANY WARRANTY; without even the
9   implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
10   See the License for more information.
11 ============================================================================*/
12 #ifndef cmCustomCommandGenerator_h
13 #define cmCustomCommandGenerator_h
14
15 #include "cmStandardIncludes.h"
16
17 class cmCustomCommand;
18 class cmMakefile;
19 class cmLocalGenerator;
20 class cmGeneratorExpression;
21
22 class cmCustomCommandGenerator
23 {
24   cmCustomCommand const& CC;
25   const char* Config;
26   cmMakefile* Makefile;
27   cmLocalGenerator* LG;
28   bool OldStyle;
29   bool MakeVars;
30   cmGeneratorExpression* GE;
31 public:
32   cmCustomCommandGenerator(cmCustomCommand const& cc, const char* config,
33                            cmMakefile* mf);
34   ~cmCustomCommandGenerator();
35   unsigned int GetNumberOfCommands() const;
36   std::string GetCommand(unsigned int c) const;
37   void AppendArguments(unsigned int c, std::string& cmd) const;
38 };
39
40 #endif