summaryrefslogtreecommitdiffstats
path: root/Source/cmIncludeRegularExpressionCommand.cxx
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2001-03-15 23:09:16 (GMT)
committerBrad King <brad.king@kitware.com>2001-03-15 23:09:16 (GMT)
commitbe4db9150c6b3bd8a6c39d48fa693a6209c34740 (patch)
tree033cb0942c8e0b7eb43afbfaef19ec403ab56083 /Source/cmIncludeRegularExpressionCommand.cxx
parentb9a8948ec879f2e6a9a2f6220bba061c44c8d4bb (diff)
downloadCMake-be4db9150c6b3bd8a6c39d48fa693a6209c34740.zip
CMake-be4db9150c6b3bd8a6c39d48fa693a6209c34740.tar.gz
CMake-be4db9150c6b3bd8a6c39d48fa693a6209c34740.tar.bz2
ENH: Added INCLUDE_REGULAR_EXPRESSION command to set regular expression used in dependency checking.
Diffstat (limited to 'Source/cmIncludeRegularExpressionCommand.cxx')
-rw-r--r--Source/cmIncludeRegularExpressionCommand.cxx30
1 files changed, 30 insertions, 0 deletions
diff --git a/Source/cmIncludeRegularExpressionCommand.cxx b/Source/cmIncludeRegularExpressionCommand.cxx
new file mode 100644
index 0000000..89a40df
--- /dev/null
+++ b/Source/cmIncludeRegularExpressionCommand.cxx
@@ -0,0 +1,30 @@
+/*=========================================================================
+
+ Program: Insight Segmentation & Registration Toolkit
+ Module: $RCSfile$
+ Language: C++
+ Date: $Date$
+ Version: $Revision$
+
+
+ Copyright (c) 2000 National Library of Medicine
+ All rights reserved.
+
+ See COPYRIGHT.txt for copyright details.
+
+=========================================================================*/
+#include "cmIncludeRegularExpressionCommand.h"
+
+// cmIncludeRegularExpressionCommand
+bool cmIncludeRegularExpressionCommand::Invoke(std::vector<std::string>& args)
+{
+ if(args.size() != 1)
+ {
+ this->SetError("called with incorrect number of arguments");
+ return false;
+ }
+ m_Makefile->SetIncludeRegularExpression(args[0].c_str());
+
+ return true;
+}
+