diff options
Diffstat (limited to 'Source/cmFindProgramCommand.h')
-rw-r--r-- | Source/cmFindProgramCommand.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Source/cmFindProgramCommand.h b/Source/cmFindProgramCommand.h index af5c6de..2113b02 100644 --- a/Source/cmFindProgramCommand.h +++ b/Source/cmFindProgramCommand.h @@ -64,6 +64,14 @@ public: } cmTypeMacro(cmFindProgramCommand, cmFindBase); + +protected: + std::string FindProgram(std::vector<std::string> names); + +private: + std::string FindAppBundle(std::vector<std::string> names); + std::string GetBundleExecutable(std::string bundlePath); + }; |