diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2001-09-17 17:58:07 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2001-09-17 17:58:07 (GMT) |
commit | 53dd41451d4cd5f945867ed7a0b1e3015b130aff (patch) | |
tree | ce9046f581ede5546d27933db6687f4af5d14043 /Source/cmCommands.cxx | |
parent | e5c9c483133bb2a66afbcc8217ae2485d3ea5679 (diff) | |
download | CMake-53dd41451d4cd5f945867ed7a0b1e3015b130aff.zip CMake-53dd41451d4cd5f945867ed7a0b1e3015b130aff.tar.gz CMake-53dd41451d4cd5f945867ed7a0b1e3015b130aff.tar.bz2 |
ENH: add Use mangled mesa command
Diffstat (limited to 'Source/cmCommands.cxx')
-rw-r--r-- | Source/cmCommands.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/cmCommands.cxx b/Source/cmCommands.cxx index 6c2dc24..4c53dc4 100644 --- a/Source/cmCommands.cxx +++ b/Source/cmCommands.cxx @@ -51,6 +51,7 @@ #include "cmSubdirCommand.cxx" #include "cmSubdirDependsCommand.cxx" #include "cmTargetLinkLibrariesCommand.cxx" +#include "cmUseMangledMesaCommand.cxx" #include "cmUtilitySourceCommand.cxx" #include "cmVTKWrapJavaCommand.cxx" #include "cmVTKWrapPythonCommand.cxx" @@ -107,6 +108,7 @@ void GetPredefinedCommands(std::list<cmCommand*>& commands) commands.push_back(new cmSubdirCommand); commands.push_back(new cmSubdirDependsCommand); commands.push_back(new cmTargetLinkLibrariesCommand); + commands.push_back(new cmUseMangledMesaCommand); commands.push_back(new cmUtilitySourceCommand); commands.push_back(new cmVTKWrapJavaCommand); commands.push_back(new cmVTKWrapPythonCommand); |