summaryrefslogtreecommitdiffstats
path: root/Source/cmFileCommand.cxx
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2005-09-10 14:33:10 (GMT)
committerBill Hoffman <bill.hoffman@kitware.com>2005-09-10 14:33:10 (GMT)
commitf8c259b443c95d2fce7f0ed7fd75e1acaf69b056 (patch)
tree0d8ef44beb84d7a2009418e44bc257f60b699bde /Source/cmFileCommand.cxx
parente6cb2ee6c495dab8d7af5a76af958d3cc87ebb86 (diff)
downloadCMake-f8c259b443c95d2fce7f0ed7fd75e1acaf69b056.zip
CMake-f8c259b443c95d2fce7f0ed7fd75e1acaf69b056.tar.gz
CMake-f8c259b443c95d2fce7f0ed7fd75e1acaf69b056.tar.bz2
BUG: try to fix qt problems
Diffstat (limited to 'Source/cmFileCommand.cxx')
-rw-r--r--Source/cmFileCommand.cxx6
1 files changed, 0 insertions, 6 deletions
diff --git a/Source/cmFileCommand.cxx b/Source/cmFileCommand.cxx
index 46e2945..8b9daa2 100644
--- a/Source/cmFileCommand.cxx
+++ b/Source/cmFileCommand.cxx
@@ -182,7 +182,6 @@ bool cmFileCommand::HandleGlobCommand(std::vector<std::string> const& args,
return false;
}
-#ifdef CMAKE_BUILD_WITH_CMAKE
std::vector<std::string>::const_iterator i = args.begin();
i++; // Get rid of subcommand
@@ -227,11 +226,6 @@ bool cmFileCommand::HandleGlobCommand(std::vector<std::string> const& args,
}
m_Makefile->AddDefinition(variable.c_str(), output.c_str());
return true;
-#else
- (void)recurse;
- this->SetError("GLOB is not implemented in the bootstrap CMake");
- return false;
-#endif
}
//----------------------------------------------------------------------------