cmake/Source/CTest/cmCTestReadCustomFilesCommand.cxx

23 lines
605 B
C++
Raw Normal View History

2016-10-30 18:24:19 +01:00
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
file Copyright.txt or https://cmake.org/licensing for details. */
#include "cmCTestReadCustomFilesCommand.h"
2016-07-09 11:21:54 +02:00
#include "cmCTest.h"
2016-10-30 18:24:19 +01:00
class cmExecutionStatus;
2016-07-09 11:21:54 +02:00
bool cmCTestReadCustomFilesCommand::InitialPass(
2016-10-30 18:24:19 +01:00
std::vector<std::string> const& args, cmExecutionStatus& /*unused*/)
{
2016-10-30 18:24:19 +01:00
if (args.empty()) {
this->SetError("called with incorrect number of arguments");
return false;
2016-07-09 11:21:54 +02:00
}
2018-01-26 17:06:56 +01:00
for (std::string const& arg : args) {
2021-09-14 00:13:48 +02:00
this->CTest->ReadCustomConfigurationFileTree(arg, this->Makefile);
2016-07-09 11:21:54 +02:00
}
return true;
}