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:
@@ -2,7 +2,16 @@
|
||||
file Copyright.txt or https://cmake.org/licensing for details. */
|
||||
#include "cmFindFileCommand.h"
|
||||
|
||||
cmFindFileCommand::cmFindFileCommand()
|
||||
class cmExecutionStatus;
|
||||
|
||||
cmFindFileCommand::cmFindFileCommand(cmExecutionStatus& status)
|
||||
: cmFindPathCommand(status)
|
||||
{
|
||||
this->IncludeFileInPath = true;
|
||||
}
|
||||
|
||||
bool cmFindFile(std::vector<std::string> const& args,
|
||||
cmExecutionStatus& status)
|
||||
{
|
||||
return cmFindFileCommand(status).InitialPass(args);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user