summaryrefslogtreecommitdiffstats
path: root/Source/cmGeneratorTarget.cxx
diff options
context:
space:
mode:
authorStephen Kelly <steveire@gmail.com>2015-10-22 22:49:58 (GMT)
committerStephen Kelly <steveire@gmail.com>2015-10-26 21:02:13 (GMT)
commitbde277e811fea2532ed32ade6d7f3d6e910bfda0 (patch)
tree735e8e47def68138ce3937784fd31c3a05e94870 /Source/cmGeneratorTarget.cxx
parentcf69630e510a5c639a93a99b315fcefea9688935 (diff)
downloadCMake-bde277e811fea2532ed32ade6d7f3d6e910bfda0.zip
CMake-bde277e811fea2532ed32ade6d7f3d6e910bfda0.tar.gz
CMake-bde277e811fea2532ed32ade6d7f3d6e910bfda0.tar.bz2
cmGeneratorTarget: Add GetLinkDirectories API.
Diffstat (limited to 'Source/cmGeneratorTarget.cxx')
-rw-r--r--Source/cmGeneratorTarget.cxx5
1 files changed, 5 insertions, 0 deletions
diff --git a/Source/cmGeneratorTarget.cxx b/Source/cmGeneratorTarget.cxx
index 95d93bc..7516576 100644
--- a/Source/cmGeneratorTarget.cxx
+++ b/Source/cmGeneratorTarget.cxx
@@ -1732,6 +1732,11 @@ cmListFileBacktrace cmGeneratorTarget::GetBacktrace() const
return this->Target->GetBacktrace();
}
+const std::vector<std::string>&cmGeneratorTarget::GetLinkDirectories() const
+{
+ return this->Target->GetLinkDirectories();
+}
+
//----------------------------------------------------------------------------
bool cmGeneratorTarget::HaveWellDefinedOutputFiles() const
{