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 d529b09..e62f3e9 100644 --- a/Source/cmCommands.cxx +++ b/Source/cmCommands.cxx @@ -39,6 +39,7 @@ #include "cmWrapExcludeFilesCommand.cxx" #include "cmWrapTclCommand.cxx" #include "cmBuildSharedLibrariesCommand.cxx" +#include "cmUtilitySourceCommand.cxx" void GetPredefinedCommands(std::list<cmCommand*>& commands) { @@ -75,6 +76,7 @@ void GetPredefinedCommands(std::list<cmCommand*>& commands) commands.push_back(new cmWrapExcludeFilesCommand); commands.push_back(new cmWrapTclCommand); commands.push_back(new cmBuildSharedLibrariesCommand); + commands.push_back(new cmUtilitySourceCommand); } |