summaryrefslogtreecommitdiffstats
path: root/Source/cmCommands.cxx
diff options
context:
space:
mode:
authorAndy Cedilnik <andy.cedilnik@kitware.com>2005-10-17 20:42:47 (GMT)
committerAndy Cedilnik <andy.cedilnik@kitware.com>2005-10-17 20:42:47 (GMT)
commit985d092d4d9f6d38c794755c3c64405ef7ec8d35 (patch)
tree382b35ed4376ba936acb4f160dd4fc5b76173dc6 /Source/cmCommands.cxx
parent427ed70363ad4aea83e071f46d9704f69472017d (diff)
downloadCMake-985d092d4d9f6d38c794755c3c64405ef7ec8d35.zip
CMake-985d092d4d9f6d38c794755c3c64405ef7ec8d35.tar.gz
CMake-985d092d4d9f6d38c794755c3c64405ef7ec8d35.tar.bz2
ENH: Add rudamentary mathematical expression support
Diffstat (limited to 'Source/cmCommands.cxx')
-rw-r--r--Source/cmCommands.cxx2
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/cmCommands.cxx b/Source/cmCommands.cxx
index 3d1f306..ec989d4 100644
--- a/Source/cmCommands.cxx
+++ b/Source/cmCommands.cxx
@@ -27,6 +27,7 @@
#include "cmIncludeExternalMSProjectCommand.cxx"
#include "cmLinkLibrariesCommand.cxx"
#include "cmLoadCacheCommand.cxx"
+#include "cmMathCommand.cxx"
#include "cmOutputRequiredFilesCommand.cxx"
#include "cmRemoveCommand.cxx"
#include "cmSetDirectoryPropertiesCommand.cxx"
@@ -68,6 +69,7 @@ void GetPredefinedCommands(std::list<cmCommand*>&
commands.push_back(new cmLinkLibrariesCommand);
commands.push_back(new cmLoadCacheCommand);
commands.push_back(new cmLoadCommandCommand);
+ commands.push_back(new cmMathCommand);
commands.push_back(new cmOutputRequiredFilesCommand);
commands.push_back(new cmRemoveCommand);
commands.push_back(new cmSetDirectoryPropertiesCommand);