ENH: more uniform approach to enable language, one step closer to being able to enable a language without modifing cmake source code

This commit is contained in:
Bill Hoffman
2004-08-26 14:55:55 -04:00
parent 7cdf5c4601
commit 66a08c10e5
54 changed files with 907 additions and 779 deletions
+2 -2
View File
@@ -118,9 +118,9 @@ int main()
cmLibHandle handle = cmDynamicLoader::OpenLibrary(lib.c_str());
if(!handle)
{
std::string err = "Can not open CMakeTestModule:";
std::string err = "Can not open CMakeTestModule:\n";
err += lib;
cmFailed(lib.c_str());
cmFailed(err.c_str());
}
else
{