diff options
author | Brad King <brad.king@kitware.com> | 2002-04-17 18:54:48 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2002-04-17 18:54:48 (GMT) |
commit | 5a418b0e00c2ff8049556f71f0475d2bf362b05b (patch) | |
tree | 89736c9e98ed772216777317972e14dc534ddb5a /Source/cmMakefile.cxx | |
parent | c83a8ac2865839f3b49b5ceb4d5d70fcefce3bcd (diff) | |
download | CMake-5a418b0e00c2ff8049556f71f0475d2bf362b05b.zip CMake-5a418b0e00c2ff8049556f71f0475d2bf362b05b.tar.gz CMake-5a418b0e00c2ff8049556f71f0475d2bf362b05b.tar.bz2 |
ENH: Removed out-of-date commands CABLE_WRAP_TCL CABLE_CLASS_SET and CONFIGURE_GCCXML
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(), |