2016-09-27 15:01:08 -04:00
|
|
|
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
|
|
|
file Copyright.txt or https://cmake.org/licensing for details. */
|
2001-06-06 13:58:18 -04:00
|
|
|
#include "cmEnableTestingCommand.h"
|
|
|
|
|
2012-08-13 13:42:58 -04:00
|
|
|
// we do this in the final pass so that we now the subdirs have all
|
2001-06-06 13:58:18 -04:00
|
|
|
// been defined
|
2008-01-23 10:28:26 -05:00
|
|
|
bool cmEnableTestingCommand::InitialPass(std::vector<std::string> const&,
|
2016-05-16 10:34:04 -04:00
|
|
|
cmExecutionStatus&)
|
2003-12-29 16:27:06 -05:00
|
|
|
{
|
2016-05-16 10:34:04 -04:00
|
|
|
this->Makefile->AddDefinition("CMAKE_TESTING_ENABLED", "1");
|
2003-12-29 16:27:06 -05:00
|
|
|
return true;
|
|
|
|
}
|