diff options
Diffstat (limited to 'Source/cmMakefile.cxx')
-rw-r--r-- | Source/cmMakefile.cxx | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Source/cmMakefile.cxx b/Source/cmMakefile.cxx index 5a2071c..ecfcb24 100644 --- a/Source/cmMakefile.cxx +++ b/Source/cmMakefile.cxx @@ -244,6 +244,13 @@ void cmMakefile::ExecuteCommand(std::string &name, delete usedCommand; } } + else if((name == "CABLE_WRAP_TCL") || (name == "CABLE_CLASS_SET") || + (name == "CONFIGURE_GCCXML")) + { + cmSystemTools::Error("The command ", name.c_str(), + " is not implemented in this version of CMake.\n" + "Contact cable@public.kitware.com for more information."); + } else { cmSystemTools::Error("unknown CMake command:", name.c_str(), |