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 | |
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')
-rw-r--r-- | Source/cmBootstrapCommands.cxx | 2 | ||||
-rw-r--r-- | Source/cmCommands.cxx | 2 |
2 files changed, 2 insertions, 2 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); diff --git a/Source/cmCommands.cxx b/Source/cmCommands.cxx index d719d55..d9a9855 100644 --- a/Source/cmCommands.cxx +++ b/Source/cmCommands.cxx @@ -24,7 +24,6 @@ #include "cmExportCommand.cxx" #include "cmExportLibraryDependencies.cxx" #include "cmFLTKWrapUICommand.cxx" -#include "cmGetTestPropertyCommand.cxx" #include "cmIncludeExternalMSProjectCommand.cxx" #include "cmInstallProgramsCommand.cxx" #include "cmLinkLibrariesCommand.cxx" @@ -66,7 +65,6 @@ void GetPredefinedCommands(std::list<cmCommand*>& commands.push_back(new cmExportCommand); commands.push_back(new cmExportLibraryDependenciesCommand); commands.push_back(new cmFLTKWrapUICommand); - commands.push_back(new cmGetTestPropertyCommand); commands.push_back(new cmIncludeExternalMSProjectCommand); commands.push_back(new cmInstallProgramsCommand); commands.push_back(new cmLinkLibrariesCommand); |