From d198c5e0729566ec34a2d2d4c5c1010c21adbf55 Mon Sep 17 00:00:00 2001 From: Bill Hoffman Date: Tue, 26 Mar 2002 12:55:14 -0500 Subject: ENH: add error checking for mmesa --- Source/cmUseMangledMesaCommand.cxx | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/Source/cmUseMangledMesaCommand.cxx b/Source/cmUseMangledMesaCommand.cxx index 3c3f3f6..a762fa1 100644 --- a/Source/cmUseMangledMesaCommand.cxx +++ b/Source/cmUseMangledMesaCommand.cxx @@ -29,6 +29,17 @@ bool cmUseMangledMesaCommand::InitialPass(std::vector const& args) return false; } const char* inputDir = args[0].c_str(); + std::string glh = inputDir; + glh += "/"; + glh += "gl.h"; + if(!cmSystemTools::FileExists(glh.c_str())) + { + std::string e = "Bad path to Mesa, could not find: "; + e += glh; + e += " "; + this->SetError(e.c_str()); + return false; + } const char* destDir = args[1].c_str(); std::vector files; cmSystemTools::Glob(inputDir, "\\.h$", files); -- cgit v0.12