diff options
author | Ken Martin <ken.martin@kitware.com> | 2006-04-04 17:04:28 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2006-04-04 17:04:28 (GMT) |
commit | d81ebf0c23307162dfc5c4a3c978ad9360bee354 (patch) | |
tree | 615b1ec7ff9d411e5d9cffa5c90d3f40641fd446 /Source/cmCTest.h | |
parent | b45f4a5d450c4fd56fd564fe67be00c7aeb4b59a (diff) | |
download | CMake-d81ebf0c23307162dfc5c4a3c978ad9360bee354.zip CMake-d81ebf0c23307162dfc5c4a3c978ad9360bee354.tar.gz CMake-d81ebf0c23307162dfc5c4a3c978ad9360bee354.tar.bz2 |
ENH: added support for -SP scripts in new processes
Diffstat (limited to 'Source/cmCTest.h')
-rw-r--r-- | Source/cmCTest.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/Source/cmCTest.h b/Source/cmCTest.h index f94cb1f..37e05e9 100644 --- a/Source/cmCTest.h +++ b/Source/cmCTest.h @@ -293,6 +293,9 @@ public: //! Read the custom configuration files and apply them to the current ctest int ReadCustomConfigurationFileTree(const char* dir); + std::vector<cmStdString> &GetInitialCommandLineArguments() + { return this->InitialCommandLineArguments; }; + private: std::string ConfigType; bool Verbose; @@ -383,7 +386,8 @@ private: int DartVersion; std::set<cmStdString> SubmitFiles; - + std::vector<cmStdString> InitialCommandLineArguments; + int SubmitIndex; cmGeneratedFileStream* OutputLogFile; |