MCPcopy Create free account
hub / github.com/Kitware/CMake / cmFindPathCommand

Class cmFindPathCommand

Source/cmFindPathCommand.h:21–37  ·  view source on GitHub ↗

\class cmFindPathCommand * \brief Define a command to search for a library. * * cmFindPathCommand is used to define a CMake variable * that specifies a library. The command searches for a given * file in a list of directories. */

Source from the content-addressed store, hash-verified

19 * file in a list of directories.
20 */
21class cmFindPathCommand : public cmFindBase
22{
23public:
24 cmFindPathCommand(cmExecutionStatus& status);
25 cmFindPathCommand(std::string findCommandName, cmExecutionStatus& status);
26
27 bool InitialPass(std::vector<std::string> const& args);
28
29 bool IncludeFileInPath;
30
31private:
32 std::string FindHeaderInFramework(std::string const& file,
33 std::string const& dir) const;
34 std::string FindHeader();
35 std::string FindNormalHeader();
36 std::string FindFrameworkHeader();
37};
38
39bool cmFindPath(std::vector<std::string> const& args,
40 cmExecutionStatus& status);

Callers 1

cmFindPathFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…