From 22270abae54796b9ac6991f2c02a5ea56ae4bd33 Mon Sep 17 00:00:00 2001 From: Jim Miller Date: Tue, 5 Jun 2001 20:34:57 -0400 Subject: [PATCH] ENH: Added AddTest command --- Source/cmCommands.cxx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Source/cmCommands.cxx b/Source/cmCommands.cxx index 3002417c8..a3fd06f9c 100644 --- a/Source/cmCommands.cxx +++ b/Source/cmCommands.cxx @@ -8,6 +8,7 @@ #include "cmAddDefinitionsCommand.cxx" #include "cmAddExecutableCommand.cxx" #include "cmAddLibraryCommand.cxx" +#include "cmAddTestCommand.cxx" #include "cmAuxSourceDirectoryCommand.cxx" #include "cmBuildCommand.cxx" #include "cmBuildNameCommand.cxx" @@ -68,6 +69,7 @@ void GetPredefinedCommands(std::list& commands) commands.push_back(new cmAddDefinitionsCommand); commands.push_back(new cmAddExecutableCommand); commands.push_back(new cmAddLibraryCommand); + commands.push_back(new cmAddTestCommand); commands.push_back(new cmAuxSourceDirectoryCommand); commands.push_back(new cmBuildCommand); commands.push_back(new cmBuildNameCommand);