diff options
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 7bdcaac7c1..1debaa03fd 100644 --- a/Source/cmCommands.cxx +++ b/Source/cmCommands.cxx @@ -42,6 +42,7 @@ #include "cmBuildSharedLibrariesCommand.cxx" #include "cmUtilitySourceCommand.cxx" #include "cmIncludeRegularExpressionCommand.cxx" +#include "cmSourceGroupCommand.cxx" void GetPredefinedCommands(std::list<cmCommand*>& commands) { @@ -81,6 +82,7 @@ void GetPredefinedCommands(std::list<cmCommand*>& commands) commands.push_back(new cmBuildSharedLibrariesCommand); commands.push_back(new cmUtilitySourceCommand); commands.push_back(new cmIncludeRegularExpressionCommand); + commands.push_back(new cmSourceGroupCommand); } |