diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2002-05-02 17:17:10 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2002-05-02 17:17:10 (GMT) |
commit | 27fe57b716555ffa31b16e98841c7f1a82228740 (patch) | |
tree | 361f44d30ef7bdba9c37b389824ac9670801177e /Source/cmMakefile.h | |
parent | b5b46599feb33d7f873faca6215f1717ddd209e6 (diff) | |
download | CMake-27fe57b716555ffa31b16e98841c7f1a82228740.zip CMake-27fe57b716555ffa31b16e98841c7f1a82228740.tar.gz CMake-27fe57b716555ffa31b16e98841c7f1a82228740.tar.bz2 |
ENH: change LINK_LIBRARY to add to targets
Diffstat (limited to 'Source/cmMakefile.h')
-rw-r--r-- | Source/cmMakefile.h | 17 |
1 files changed, 1 insertions, 16 deletions
diff --git a/Source/cmMakefile.h b/Source/cmMakefile.h index 742e622..1914dc0 100644 --- a/Source/cmMakefile.h +++ b/Source/cmMakefile.h @@ -155,22 +155,6 @@ public: const std::vector<std::string> &depends, const std::vector<std::string> &outputs); -// /** -// * Get a list of link libraries in the build. -// */ -// cmTarget::LinkLibraries& GetLinkLibraries() -// { -// return m_LinkLibraries; -// } - - /** - * Get a list of link libraries in the build. - */ - const cmTarget::LinkLibraries& GetLinkLibraries() const - { - return m_LinkLibraries; - } - /** * Add a link library to the build. */ @@ -178,6 +162,7 @@ public: void AddLinkLibrary(const char*, cmTarget::LinkLibraryType type); void AddLinkLibraryForTarget(const char *tgt, const char*, cmTarget::LinkLibraryType type); + void AddLinkDirectoryForTarget(const char *tgt, const char* d); /** * Add a link directory to the build. |