packaging: Initial packaging
[platform/upstream/cmake.git] / Source / cmIncludeRegularExpressionCommand.cxx
1 /*============================================================================
2   CMake - Cross Platform Makefile Generator
3   Copyright 2000-2009 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 #include "cmIncludeRegularExpressionCommand.h"
13
14 // cmIncludeRegularExpressionCommand
15 bool cmIncludeRegularExpressionCommand
16 ::InitialPass(std::vector<std::string> const& args, cmExecutionStatus &)
17 {
18   if((args.size() < 1) || (args.size() > 2))
19     {
20     this->SetError("called with incorrect number of arguments");
21     return false;
22     }
23   this->Makefile->SetIncludeRegularExpression(args[0].c_str());
24
25   if(args.size() > 1)
26     {
27     this->Makefile->SetComplainRegularExpression(args[1].c_str());
28     }
29
30   return true;
31 }
32