diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2008-07-07 19:07:54 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2008-07-07 19:07:54 (GMT) |
commit | 2081dcbfce7245a1c19ec1e5fb9f0a7a3780aa30 (patch) | |
tree | ed323ce4b9a8902ee6c5dcb9951863ba552ab8ac /Source/cmBootstrapCommands.cxx | |
parent | 9a3c0bf07308b89f2b13e877048bbb8f43717c6f (diff) | |
download | CMake-2081dcbfce7245a1c19ec1e5fb9f0a7a3780aa30.zip CMake-2081dcbfce7245a1c19ec1e5fb9f0a7a3780aa30.tar.gz CMake-2081dcbfce7245a1c19ec1e5fb9f0a7a3780aa30.tar.bz2 |
ENH: add get_test_property to bootstrap so bootstrap builds test the same as non-bootstrap builds
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 bdc9e3b..b8031fc 100644 --- a/Source/cmBootstrapCommands.cxx +++ b/Source/cmBootstrapCommands.cxx @@ -86,6 +86,7 @@ #include "cmSetSourceFilesPropertiesCommand.cxx" #include "cmSetTargetPropertiesCommand.cxx" #include "cmSetTestsPropertiesCommand.cxx" +#include "cmGetTestPropertyCommand.cxx" #include "cmSiteNameCommand.cxx" #include "cmStringCommand.cxx" #include "cmSubdirCommand.cxx" @@ -154,6 +155,7 @@ void GetBootstrapCommands(std::list<cmCommand*>& commands) commands.push_back(new cmSetPropertyCommand); commands.push_back(new cmSetSourceFilesPropertiesCommand); commands.push_back(new cmSetTargetPropertiesCommand); + commands.push_back(new cmGetTestPropertyCommand); commands.push_back(new cmSetTestsPropertiesCommand); commands.push_back(new cmSiteNameCommand); commands.push_back(new cmStringCommand); |