summaryrefslogtreecommitdiffstats
path: root/Source/cmExecProgramCommand.h
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2013-10-21 13:02:26 (GMT)
committerCMake Topic Stage <kwrobot@kitware.com>2013-10-21 13:02:26 (GMT)
commitd06610888dd357a7085be0bfff86f5d5d291771d (patch)
tree2e26a861be940da008a83efeb7fdca9cdb8bc82b /Source/cmExecProgramCommand.h
parent595060f3837a7da28810c644177b63d6319631b6 (diff)
parent765d783972dbacc336d11803cccf56cdc9aac6c5 (diff)
downloadCMake-d06610888dd357a7085be0bfff86f5d5d291771d.zip
CMake-d06610888dd357a7085be0bfff86f5d5d291771d.tar.gz
CMake-d06610888dd357a7085be0bfff86f5d5d291771d.tar.bz2
Merge topic 'remove-old-process-execution'
765d783 cmSystemTools: Drop old RunCommand method 52b80b2 exec_program: Re-implement using KWSys Process c076476 cmake: Drop "cmake -E comspec" Win9x helper f551135 cmExtraEclipseCDT4Generator: Replace RunCommand with RunSingleCommand
Diffstat (limited to 'Source/cmExecProgramCommand.h')
-rw-r--r--Source/cmExecProgramCommand.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/Source/cmExecProgramCommand.h b/Source/cmExecProgramCommand.h
index 4892dd8..6d28cdc 100644
--- a/Source/cmExecProgramCommand.h
+++ b/Source/cmExecProgramCommand.h
@@ -57,6 +57,10 @@ public:
}
cmTypeMacro(cmExecProgramCommand, cmCommand);
+private:
+ static bool RunCommand(const char* command, std::string& output,
+ int &retVal, const char* directory = 0,
+ bool verbose = true);
};
#endif