diff options
author | Brad King <brad.king@kitware.com> | 2001-03-08 15:30:18 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2001-03-08 15:30:18 (GMT) |
commit | 4666b017101de1aa9367a8c6d8ad0b8cb03a77c5 (patch) | |
tree | b7a444b9a0dc7689617802f1321ff1c6d6f8197e /Source/cmCommands.cxx | |
parent | 5c8b68ba70c77eb2409e29a416599e13cc2d7e5e (diff) | |
download | CMake-4666b017101de1aa9367a8c6d8ad0b8cb03a77c5.zip CMake-4666b017101de1aa9367a8c6d8ad0b8cb03a77c5.tar.gz CMake-4666b017101de1aa9367a8c6d8ad0b8cb03a77c5.tar.bz2 |
ENH: Added UTILITY_SOURCE command for specifying where a 3rd party utility's source is located when it is included in the distribution of a project.
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); } |