summaryrefslogtreecommitdiffstats
path: root/Source/cmCommands.cxx
diff options
context:
space:
mode:
authorKen Martin <ken.martin@kitware.com>2001-04-19 21:39:03 (GMT)
committerKen Martin <ken.martin@kitware.com>2001-04-19 21:39:03 (GMT)
commitb5f62159ca57dfa074b3985e17df2b2a29ab6d0f (patch)
treeafc12bc65ac93fbba86f360ca8d73eef2fba4867 /Source/cmCommands.cxx
parent24bce99cbff13cb337c543dce55f056351caa2fc (diff)
downloadCMake-b5f62159ca57dfa074b3985e17df2b2a29ab6d0f.zip
CMake-b5f62159ca57dfa074b3985e17df2b2a29ab6d0f.tar.gz
CMake-b5f62159ca57dfa074b3985e17df2b2a29ab6d0f.tar.bz2
added if else endif add definition
Diffstat (limited to 'Source/cmCommands.cxx')
-rw-r--r--Source/cmCommands.cxx8
1 files changed, 8 insertions, 0 deletions
diff --git a/Source/cmCommands.cxx b/Source/cmCommands.cxx
index 4e1f38a..2865806 100644
--- a/Source/cmCommands.cxx
+++ b/Source/cmCommands.cxx
@@ -43,6 +43,10 @@
#include "cmUtilitySourceCommand.cxx"
#include "cmIncludeRegularExpressionCommand.cxx"
#include "cmSourceGroupCommand.cxx"
+#include "cmIfCommand.cxx"
+#include "cmElseCommand.cxx"
+#include "cmEndIfCommand.cxx"
+#include "cmAddDefinitionsCommand.cxx"
void GetPredefinedCommands(std::list<cmCommand*>& commands)
{
@@ -83,6 +87,10 @@ void GetPredefinedCommands(std::list<cmCommand*>& commands)
commands.push_back(new cmUtilitySourceCommand);
commands.push_back(new cmIncludeRegularExpressionCommand);
commands.push_back(new cmSourceGroupCommand);
+ commands.push_back(new cmIfCommand);
+ commands.push_back(new cmElseCommand);
+ commands.push_back(new cmEndIfCommand);
+ commands.push_back(new cmAddDefinitionsCommand);
}