diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2008-01-01 15:13:41 -0500 |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2008-01-01 15:13:41 -0500 |
commit | b479c6a8a98664c19eeaef40b71850c1f5315601 (patch) | |
tree | d6bdae61666c26a6872fcc8baecc5d7cdb90ba8c /Source/cmSystemTools.h | |
parent | 24d6ecd81cf457367c622cd166da5d49f54bf42b (diff) | |
download | cmake-b479c6a8a98664c19eeaef40b71850c1f5315601.tar.gz |
ENH: add ability to have manifest files and incremental linking with make and nmake
Diffstat (limited to 'Source/cmSystemTools.h')
-rw-r--r-- | Source/cmSystemTools.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/Source/cmSystemTools.h b/Source/cmSystemTools.h index 44fcb3d0b4..fcfbafdb6f 100644 --- a/Source/cmSystemTools.h +++ b/Source/cmSystemTools.h @@ -209,6 +209,16 @@ public: int* retVal = 0, const char* dir = 0, bool verbose = true, double timeout = 0.0); + /** + * In this version of RunSingleCommand, command[0] should be + * the command to run, and each argument to the command should + * be in comand[1]...command[command.size()] + */ + static bool RunSingleCommand(std::vector<cmStdString> const& command, + std::string* output = 0, + int* retVal = 0, const char* dir = 0, + bool verbose = true, + double timeout = 0.0); /** * Parse arguments out of a single string command |