Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Kitware
GitHub Repository: Kitware/CMake
Path: blob/master/Source/CTest/cmCTestConfigureCommand.h
5000 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 "cmCTestHandlerCommand.h"
10
11
class cmExecutionStatus;
12
13
class cmCTestConfigureCommand : public cmCTestHandlerCommand
14
{
15
public:
16
using cmCTestHandlerCommand::cmCTestHandlerCommand;
17
18
protected:
19
struct ConfigureArguments : HandlerArguments
20
{
21
std::string Options;
22
};
23
24
private:
25
std::string GetName() const override { return "ctest_configure"; }
26
27
bool ExecuteConfigure(ConfigureArguments const& args,
28
cmExecutionStatus& status) const;
29
30
bool InitialPass(std::vector<std::string> const& args,
31
cmExecutionStatus& status) const override;
32
};
33
34