diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2002-05-02 20:13:18 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2002-05-02 20:13:18 (GMT) |
commit | 46e9d970e9d69376c4b20c1665bd59af46922e6d (patch) | |
tree | e5174c3e13480902cd27a1f2e71b1775fffbda2a /Source/cmTarget.h | |
parent | a80153b5cb077e99ff81eca947643099430ba391 (diff) | |
download | CMake-46e9d970e9d69376c4b20c1665bd59af46922e6d.zip CMake-46e9d970e9d69376c4b20c1665bd59af46922e6d.tar.gz CMake-46e9d970e9d69376c4b20c1665bd59af46922e6d.tar.bz2 |
remove canonical conversion for lib names
Diffstat (limited to 'Source/cmTarget.h')
-rw-r--r-- | Source/cmTarget.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/Source/cmTarget.h b/Source/cmTarget.h index 7aee9f6..516d16b 100644 --- a/Source/cmTarget.h +++ b/Source/cmTarget.h @@ -126,13 +126,6 @@ private: typedef std::map< std::string, std::pair<std::string,LinkLibraryType> > LibTypeMap; /** - * For each library in the link line, return a canonical name. The - * orginal library names have complicated forms, such as "x", - * "libx.so", "/full/path/libx.a", "-lx", and "-framework x". - */ - std::string CanonicalLibraryName( const std::string& lib ) const; - - /** * Emits the library \param lib and all its dependencies into * link_line. \param emitted keeps track of the libraries that have * been emitted to avoid duplicates--it is more efficient than |