diff options
author | Sebastien Barre <sebastien.barre@kitware.com> | 2005-10-04 20:40:01 (GMT) |
---|---|---|
committer | Sebastien Barre <sebastien.barre@kitware.com> | 2005-10-04 20:40:01 (GMT) |
commit | b83dffb50068ad053c1225367dda01825ef2f8bc (patch) | |
tree | f09c998827bd1f9d6adad1177c82e041fde83e14 /Source/cmBootstrapCommands.cxx | |
parent | 13627538b9330e0a82f9c570fbdff52df1392c24 (diff) | |
download | CMake-b83dffb50068ad053c1225367dda01825ef2f8bc.zip CMake-b83dffb50068ad053c1225367dda01825ef2f8bc.tar.gz CMake-b83dffb50068ad053c1225367dda01825ef2f8bc.tar.bz2 |
ENH: the test for kwsys uses GET_TARGET_PROPERTY, which was not in the CMake bootstrap
Diffstat (limited to 'Source/cmBootstrapCommands.cxx')
-rw-r--r-- | Source/cmBootstrapCommands.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/cmBootstrapCommands.cxx b/Source/cmBootstrapCommands.cxx index 776b765..fe4f32d 100644 --- a/Source/cmBootstrapCommands.cxx +++ b/Source/cmBootstrapCommands.cxx @@ -46,6 +46,7 @@ #include "cmForEachCommand.cxx" #include "cmGetFilenameComponentCommand.cxx" #include "cmGetSourceFilePropertyCommand.cxx" +#include "cmGetTargetPropertyCommand.cxx" #include "cmIfCommand.cxx" #include "cmIncludeCommand.cxx" #include "cmIncludeDirectoryCommand.cxx" @@ -103,6 +104,7 @@ void GetBootstrapCommands(std::list<cmCommand*>& commands) commands.push_back(new cmForEachCommand); commands.push_back(new cmGetFilenameComponentCommand); commands.push_back(new cmGetSourceFilePropertyCommand); + commands.push_back(new cmGetTargetPropertyCommand); commands.push_back(new cmIfCommand); commands.push_back(new cmIncludeCommand); commands.push_back(new cmIncludeDirectoryCommand); |