mirror of
https://github.com/Kitware/CMake.git
synced 2026-02-22 06:59:01 -06:00
cmFind*: Port away from cmCommand
This commit is contained in:
@@ -8,9 +8,6 @@
|
||||
#include <string>
|
||||
#include <vector>
|
||||
|
||||
#include "cm_memory.hxx"
|
||||
|
||||
#include "cmCommand.h"
|
||||
#include "cmFindBase.h"
|
||||
|
||||
class cmExecutionStatus;
|
||||
@@ -25,21 +22,9 @@ class cmExecutionStatus;
|
||||
class cmFindPathCommand : public cmFindBase
|
||||
{
|
||||
public:
|
||||
cmFindPathCommand();
|
||||
/**
|
||||
* This is a virtual constructor for the command.
|
||||
*/
|
||||
std::unique_ptr<cmCommand> Clone() override
|
||||
{
|
||||
return cm::make_unique<cmFindPathCommand>();
|
||||
}
|
||||
cmFindPathCommand(cmExecutionStatus& status);
|
||||
|
||||
/**
|
||||
* This is called when the command is first encountered in
|
||||
* the CMakeLists.txt file.
|
||||
*/
|
||||
bool InitialPass(std::vector<std::string> const& args,
|
||||
cmExecutionStatus& status) override;
|
||||
bool InitialPass(std::vector<std::string> const& args);
|
||||
|
||||
bool IncludeFileInPath;
|
||||
|
||||
@@ -51,4 +36,7 @@ private:
|
||||
std::string FindFrameworkHeader();
|
||||
};
|
||||
|
||||
bool cmFindPath(std::vector<std::string> const& args,
|
||||
cmExecutionStatus& status);
|
||||
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user