diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2001-02-13 00:49:52 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2001-02-13 00:49:52 (GMT) |
commit | db267f533b9ac63db78559e9d3cb39a6db090770 (patch) | |
tree | c1d9cbee32d5de1e522e2c2ab5503ec82fb39f2c /Source/cmSystemTools.cxx | |
parent | 9d431ae48b0912454405d5eaabf7ce11561fd4ec (diff) | |
download | CMake-db267f533b9ac63db78559e9d3cb39a6db090770.zip CMake-db267f533b9ac63db78559e9d3cb39a6db090770.tar.gz CMake-db267f533b9ac63db78559e9d3cb39a6db090770.tar.bz2 |
ENH: get rid of special msc configure file
Diffstat (limited to 'Source/cmSystemTools.cxx')
-rw-r--r-- | Source/cmSystemTools.cxx | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Source/cmSystemTools.cxx b/Source/cmSystemTools.cxx index b66a178..1f10cb2 100644 --- a/Source/cmSystemTools.cxx +++ b/Source/cmSystemTools.cxx @@ -264,8 +264,8 @@ bool cmSystemTools::ParseFunction(std::ifstream& fin, void cmSystemTools::GetArguments(std::string& line, std::vector<std::string>& arguments) { - cmRegularExpression argument("[\t ]*([-/\\\\{}\\$A-Za-z_0-9]+)[\t ]*"); - cmRegularExpression argumentWithSpaces("[\t ]*\"([- /\\\\{}\\$A-Za-z_0-9]+)\"[\t ]*"); + cmRegularExpression argument("[\t ]*([-/\\.\\\\{}\\$A-Za-z_0-9]+)[\t ]*"); + cmRegularExpression argumentWithSpaces("[\t ]*\"([-\\. /\\\\{}\\$A-Za-z_0-9]+)\"[\t ]*"); std::string arg(" "); while(arg.length() ) { @@ -308,3 +308,4 @@ void cmSystemTools::Error(const char* m1, const char* m2) std::cerr << message.c_str() << std::endl; #endif } + |