\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. */
| 19 | * file in a list of directories. |
| 20 | */ |
| 21 | class cmFindPathCommand : public cmFindBase |
| 22 | { |
| 23 | public: |
| 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 | |
| 31 | private: |
| 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 | |
| 39 | bool cmFindPath(std::vector<std::string> const& args, |
| 40 | cmExecutionStatus& status); |
no outgoing calls
no test coverage detected
searching dependent graphs…