diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2005-03-03 23:46:52 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2005-03-03 23:46:52 (GMT) |
commit | 16b65d86c9842b04cf1abda0604a23956f5a7e33 (patch) | |
tree | 35ab79a5ff825ecb81490d40f95f6f342478bcfd /Source/cmOrderLinkDirectories.h | |
parent | ded7d151446dd889956c294188c7bf65e3063e96 (diff) | |
download | CMake-16b65d86c9842b04cf1abda0604a23956f5a7e33.zip CMake-16b65d86c9842b04cf1abda0604a23956f5a7e33.tar.gz CMake-16b65d86c9842b04cf1abda0604a23956f5a7e33.tar.bz2 |
ENH: try and debug the failed test on the continuous
Diffstat (limited to 'Source/cmOrderLinkDirectories.h')
-rw-r--r-- | Source/cmOrderLinkDirectories.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/Source/cmOrderLinkDirectories.h b/Source/cmOrderLinkDirectories.h index 09441b9..61e3823 100644 --- a/Source/cmOrderLinkDirectories.h +++ b/Source/cmOrderLinkDirectories.h @@ -47,6 +47,7 @@ class cmOrderLinkDirectories { public: + cmOrderLinkDirectories(); ///! set link information from the target void SetLinkInformation(const cmTarget&, cmTarget::LinkLibraryType, const char* targetLibrary); @@ -79,6 +80,11 @@ public: cmStdString Path; }; friend struct cmOrderLinkDirectoriesCompare; + void DebugOn() + { + m_Debug = true; + } + private: void CreateRegularExpressions(); void DetermineLibraryPathOrder(std::vector<cmStdString>& searchPaths, @@ -119,7 +125,7 @@ private: cmsys::RegularExpression m_RemoveLibraryExtension; cmsys::RegularExpression m_ExtractBaseLibraryName; cmsys::RegularExpression m_ExtractBaseLibraryNameNoPrefix; - + bool m_Debug; }; #endif |