\class cmFindFileCommand * \brief Define a command to search for an executable program. * * cmFindFileCommand is used to define a CMake variable * that specifies an executable program. The command searches * in the current path (e.g., PATH environment variable) for * an executable that matches one of the supplied names. */
| 20 | * an executable that matches one of the supplied names. |
| 21 | */ |
| 22 | class cmFindFileCommand : public cmFindPathCommand |
| 23 | { |
| 24 | public: |
| 25 | cmFindFileCommand(cmExecutionStatus& status); |
| 26 | }; |
| 27 | |
| 28 | bool cmFindFile(std::vector<std::string> const& args, |
| 29 | cmExecutionStatus& status); |
no outgoing calls
no test coverage detected
searching dependent graphs…