summaryrefslogtreecommitdiffstats
path: root/Python/frozenmain.c
diff options
context:
space:
mode:
Diffstat (limited to 'Python/frozenmain.c')
0 files changed, 0 insertions, 0 deletions
;install,", "clean," and so on. */ class cmExecProgramCommand : public cmCommand { public: typedef cmProcessOutput::Encoding Encoding; /** * This is a virtual constructor for the command. */ cmCommand* Clone() override { return new cmExecProgramCommand; } /** * This is called when the command is first encountered in * the CMakeLists.txt file. */ bool InitialPass(std::vector<std::string> const& args, cmExecutionStatus& status) override; private: static bool RunCommand(const char* command, std::string& output, int& retVal, const char* directory = nullptr, bool verbose = true, Encoding encoding = cmProcessOutput::Auto); }; #endif