diff options
author | Brad King <brad.king@kitware.com> | 2008-07-23 16:19:54 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2008-07-23 16:19:54 (GMT) |
commit | 74d653602413297e00d5507f3839da0acbfd0030 (patch) | |
tree | f29294218342fc9d6787acde60bde526c401f4f7 /Source/cmComputeLinkInformation.h | |
parent | 363727f600113e3c99a4a83e4227b1a2f584dffa (diff) | |
download | CMake-74d653602413297e00d5507f3839da0acbfd0030.zip CMake-74d653602413297e00d5507f3839da0acbfd0030.tar.gz CMake-74d653602413297e00d5507f3839da0acbfd0030.tar.bz2 |
ENH: Skip libs in known dirs for CMP0003 warnings.
Sometimes we ask the linker to search for a library for which the path
is known but for some reason cannot be specified by full path. In these
cases do not include the library in CMP0003 warnings because we know the
extra paths are not needed for it.
Diffstat (limited to 'Source/cmComputeLinkInformation.h')
-rw-r--r-- | Source/cmComputeLinkInformation.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmComputeLinkInformation.h b/Source/cmComputeLinkInformation.h index 0ac0afc..c1f240b 100644 --- a/Source/cmComputeLinkInformation.h +++ b/Source/cmComputeLinkInformation.h @@ -139,7 +139,7 @@ private: void AddTargetItem(std::string const& item, cmTarget* target); void AddFullItem(std::string const& item); bool CheckImplicitDirItem(std::string const& item); - void AddUserItem(std::string const& item); + void AddUserItem(std::string const& item, bool pathNotKnown); void AddDirectoryItem(std::string const& item); void AddFrameworkItem(std::string const& item); void DropDirectoryItem(std::string const& item); |