diff options
author | Brad King <brad.king@kitware.com> | 2009-02-12 18:00:22 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2009-02-12 18:00:22 (GMT) |
commit | 7435355ec8ca10d3d6ef07d975e1f0d9a60b681d (patch) | |
tree | c9474211de01f33a296ebea49eb27ab665d02629 /Source/CTest/cmCTestLaunch.h | |
parent | 4f369610f58c165fbf80ab75a93d45a1d9af6362 (diff) | |
download | CMake-7435355ec8ca10d3d6ef07d975e1f0d9a60b681d.zip CMake-7435355ec8ca10d3d6ef07d975e1f0d9a60b681d.tar.gz CMake-7435355ec8ca10d3d6ef07d975e1f0d9a60b681d.tar.bz2 |
ENH: Report file names relative to source dir
This teaches cmCTestLaunch to report source files that lie under the top
source directory relative to the top.
Diffstat (limited to 'Source/CTest/cmCTestLaunch.h')
-rw-r--r-- | Source/CTest/cmCTestLaunch.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Source/CTest/cmCTestLaunch.h b/Source/CTest/cmCTestLaunch.h index 1466870..9e92452 100644 --- a/Source/CTest/cmCTestLaunch.h +++ b/Source/CTest/cmCTestLaunch.h @@ -100,6 +100,10 @@ private: void WriteXMLResult(std::ostream& fxml); void WriteXMLLabels(std::ostream& fxml); void DumpFileToXML(std::ostream& fxml, std::string const& fname); + + // Configuration + void LoadConfig(); + std::string SourceDir; }; #endif |