diff options
author | Andy Cedilnik <andy.cedilnik@kitware.com> | 2006-04-09 11:45:18 (GMT) |
---|---|---|
committer | Andy Cedilnik <andy.cedilnik@kitware.com> | 2006-04-09 11:45:18 (GMT) |
commit | 55c0ff5f649e4cafdae1d50472ab1d976cc80120 (patch) | |
tree | c120d05ce27fd9b826053d887cfcfcfd3a520491 /Source/cmCTest.h | |
parent | 2238e2269943e7ea20857fb13dcf0b679e0daf23 (diff) | |
download | CMake-55c0ff5f649e4cafdae1d50472ab1d976cc80120.zip CMake-55c0ff5f649e4cafdae1d50472ab1d976cc80120.tar.gz CMake-55c0ff5f649e4cafdae1d50472ab1d976cc80120.tar.bz2 |
BUG: Improve the behavior of the ReadCustomFilesCommand
Diffstat (limited to 'Source/cmCTest.h')
-rw-r--r-- | Source/cmCTest.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/Source/cmCTest.h b/Source/cmCTest.h index 37e05e9..b73f8ce 100644 --- a/Source/cmCTest.h +++ b/Source/cmCTest.h @@ -291,9 +291,10 @@ public: SetOfStrings* GetSubmitFiles() { return &this->SubmitFiles; } //! Read the custom configuration files and apply them to the current ctest - int ReadCustomConfigurationFileTree(const char* dir); + int ReadCustomConfigurationFileTree(const char* dir, cmMakefile* mf, + bool fast = false); - std::vector<cmStdString> &GetInitialCommandLineArguments() + std::vector<cmStdString> &GetInitialCommandLineArguments() { return this->InitialCommandLineArguments; }; private: @@ -387,7 +388,7 @@ private: std::set<cmStdString> SubmitFiles; std::vector<cmStdString> InitialCommandLineArguments; - + int SubmitIndex; cmGeneratedFileStream* OutputLogFile; |