diff options
author | Sebastien Barre <sebastien.barre@kitware.com> | 2001-05-25 01:13:56 (GMT) |
---|---|---|
committer | Sebastien Barre <sebastien.barre@kitware.com> | 2001-05-25 01:13:56 (GMT) |
commit | d8c34cfb8196d19c2f13956ca4a75d714b860abc (patch) | |
tree | 0d63a2a6b63f42c4600208c47f5643686ee18849 /Source/cmCommands.cxx | |
parent | 0532db2418146c8fa94760171ca63bd18bccfc62 (diff) | |
download | CMake-d8c34cfb8196d19c2f13956ca4a75d714b860abc.zip CMake-d8c34cfb8196d19c2f13956ca4a75d714b860abc.tar.gz CMake-d8c34cfb8196d19c2f13956ca4a75d714b860abc.tar.bz2 |
Welcome to cmGetFilenameComponentCommand ("Get a specific component of a full filename")
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 ad2c57e..871f37d 100644 --- a/Source/cmCommands.cxx +++ b/Source/cmCommands.cxx @@ -35,6 +35,7 @@ #include "cmFindLibraryCommand.cxx" #include "cmFindPathCommand.cxx" #include "cmFindProgramCommand.cxx" +#include "cmGetFilenameComponentCommand.cxx" #include "cmIfCommand.cxx" #include "cmIncludeCommand.cxx" #include "cmIncludeDirectoryCommand.cxx" @@ -91,6 +92,7 @@ void GetPredefinedCommands(std::list<cmCommand*>& commands) commands.push_back(new cmFindLibraryCommand); commands.push_back(new cmFindPathCommand); commands.push_back(new cmFindProgramCommand); + commands.push_back(new cmGetFilenameComponentCommand); commands.push_back(new cmIfCommand); commands.push_back(new cmIncludeCommand); commands.push_back(new cmIncludeDirectoryCommand); |