diff options
author | Brad King <brad.king@kitware.com> | 2008-01-23 20:22:38 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2008-01-23 20:22:38 (GMT) |
commit | f27379e3f7291abd0c7f3706cd9e1202052c9889 (patch) | |
tree | 36a283459358fe3b53a522c10a6312cfddee2db2 /Source/cmComputeLinkInformation.h | |
parent | ae356560a0715fca2f78e1df47723357f3c0c739 (diff) | |
download | CMake-f27379e3f7291abd0c7f3706cd9e1202052c9889.zip CMake-f27379e3f7291abd0c7f3706cd9e1202052c9889.tar.gz CMake-f27379e3f7291abd0c7f3706cd9e1202052c9889.tar.bz2 |
ENH: Added CMAKE_LINK_OLD_PATHS compatibility mode for linker search paths.
Diffstat (limited to 'Source/cmComputeLinkInformation.h')
-rw-r--r-- | Source/cmComputeLinkInformation.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Source/cmComputeLinkInformation.h b/Source/cmComputeLinkInformation.h index f082e09..9f86c7d 100644 --- a/Source/cmComputeLinkInformation.h +++ b/Source/cmComputeLinkInformation.h @@ -121,6 +121,11 @@ private: void AddLinkerSearchDirectories(std::vector<std::string> const& dirs); std::set<cmStdString> DirectoriesEmmitted; + // Linker search path compatibility mode. + std::vector<std::string> OldLinkDirs; + bool OldLinkDirMode; + bool HaveUserFlagItem; + // Runtime path computation. struct LibraryRuntimeEntry { |