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);