diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-07-18 11:52:46 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-07-18 11:56:48 (GMT) |
commit | 881613c4abbbca35223678d6b17da418958a0005 (patch) | |
tree | 7cf2425576dd4828d69099e807400c32d83f1bec /Source/cmMakefile.h | |
parent | 357342602db67e456e9afc9697328d490ab0fc41 (diff) | |
download | CMake-881613c4abbbca35223678d6b17da418958a0005.zip CMake-881613c4abbbca35223678d6b17da418958a0005.tar.gz CMake-881613c4abbbca35223678d6b17da418958a0005.tar.bz2 |
cmMakefile: Remove special handling of LINK_DIRECTORIES property.
There is no need to handle it in a special way.
Diffstat (limited to 'Source/cmMakefile.h')
-rw-r--r-- | Source/cmMakefile.h | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/Source/cmMakefile.h b/Source/cmMakefile.h index 154e099..98d199a 100644 --- a/Source/cmMakefile.h +++ b/Source/cmMakefile.h @@ -229,16 +229,6 @@ public: void AddLinkDirectoryForTarget(const std::string& tgt, const std::string& d); /** - * Add a link directory to the build. - */ - void AddLinkDirectory(const std::string&); - - void SetLinkDirectories(const std::vector<std::string>& vec) - { - this->LinkDirectories = vec; - } - - /** * Add a subdirectory to the build. */ void AddSubDirectory(const std::string& fullSrcDir, |