summaryrefslogtreecommitdiffstats
path: root/Source/cmCommands.cxx
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2002-11-06 22:35:27 (GMT)
committerBrad King <brad.king@kitware.com>2002-11-06 22:35:27 (GMT)
commit42c464c05e8f79f82babf83909d918bf26317425 (patch)
tree10589e522b1acf98fea7f81a6430052c446c6082 /Source/cmCommands.cxx
parent5417d02a61dfaed3377a017b2ffeaea66f8344ce (diff)
downloadCMake-42c464c05e8f79f82babf83909d918bf26317425.zip
CMake-42c464c05e8f79f82babf83909d918bf26317425.tar.gz
CMake-42c464c05e8f79f82babf83909d918bf26317425.tar.bz2
ENH: Added STRING command.
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 fd4445d..f52dd45 100644
--- a/Source/cmCommands.cxx
+++ b/Source/cmCommands.cxx
@@ -73,6 +73,7 @@
#include "cmSourceFilesCommand.cxx"
#include "cmSourceFilesRemoveCommand.cxx"
#include "cmSourceGroupCommand.cxx"
+#include "cmStringCommand.cxx"
#include "cmSubdirCommand.cxx"
#include "cmSubdirDependsCommand.cxx"
#include "cmTargetLinkLibrariesCommand.cxx"
@@ -157,6 +158,7 @@ void GetPredefinedCommands(std::list<cmCommand*>& commands)
commands.push_back(new cmSourceFilesCommand);
commands.push_back(new cmSourceFilesRemoveCommand);
commands.push_back(new cmSourceGroupCommand);
+ commands.push_back(new cmStringCommand);
commands.push_back(new cmSubdirCommand);
commands.push_back(new cmSubdirDependsCommand);
commands.push_back(new cmTargetLinkLibrariesCommand);