12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- #ifndef cmFindPathCommand_h
- #define cmFindPathCommand_h
- #include "cmConfigure.h"
- #include <string>
- #include <vector>
- #include "cmFindBase.h"
- class cmCommand;
- class cmExecutionStatus;
- class cmFindPathCommand : public cmFindBase
- {
- public:
- cmFindPathCommand();
-
- cmCommand* Clone() override { return new cmFindPathCommand; }
-
- bool InitialPass(std::vector<std::string> const& args,
- cmExecutionStatus& status) override;
- bool IncludeFileInPath;
- private:
- std::string FindHeaderInFramework(std::string const& file,
- std::string const& dir);
- std::string FindHeader();
- std::string FindNormalHeader();
- std::string FindFrameworkHeader();
- };
- #endif
|