Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Kitware
GitHub Repository: Kitware/CMake
Path: blob/master/Source/CTest/cmCTestReadCustomFilesCommand.h
4998 views
1
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
2
file LICENSE.rst or https://cmake.org/licensing for details. */
3
#pragma once
4
5
#include "cmConfigure.h" // IWYU pragma: keep
6
7
#include <string>
8
9
#include "cmCTestCommand.h"
10
11
class cmCTestReadCustomFilesCommand : public cmCTestCommand
12
{
13
public:
14
using cmCTestCommand::cmCTestCommand;
15
16
/**
17
* This is called when the command is first encountered in
18
* the CMakeLists.txt file.
19
*/
20
bool InitialPass(std::vector<std::string> const& args,
21
cmExecutionStatus& status) const override;
22
};
23
24