diff options
author | Brad King <brad.king@kitware.com> | 2001-03-20 13:20:59 -0500 |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2001-03-20 13:20:59 -0500 |
commit | 8c087d0e7a2045fead07d3069eefddfa4c515179 (patch) | |
tree | 3ea3acebf9283f281e5753a15968bd13c8558da2 /Source/cmCommands.cxx | |
parent | 51ef865ef8c3b39e08ad627cb0effa35ca74955a (diff) | |
download | cmake-8c087d0e7a2045fead07d3069eefddfa4c515179.tar.gz |
ENH: Added SOURCE_GROUP command and corresponding support code. This command allows CMakeLists files to specify how sources are organized into groups in the generated DSP files and makefiles.
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); } |