diff options
author | Brad King <brad.king@kitware.com> | 2014-06-30 14:38:59 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2014-07-07 12:52:39 (GMT) |
commit | 848c8ccf18e325e0d2833ac468f733261832feca (patch) | |
tree | 543d9c163c087b5e1dacd1a0a9607ebaaab64f7d /Source/cmComputeTargetDepends.cxx | |
parent | f85ccf23eeec08fff46c0788b8ee357b3f5220e4 (diff) | |
download | CMake-848c8ccf18e325e0d2833ac468f733261832feca.zip CMake-848c8ccf18e325e0d2833ac468f733261832feca.tar.gz CMake-848c8ccf18e325e0d2833ac468f733261832feca.tar.bz2 |
cmTarget: Refactor LinkImplementation to allow more information
Create a cmLinkImplItem class derived from cmLinkItem so more
information can be added to link implementation entries than link
interface entries. Convert the LinkImplementation Libraries member to
hold it. Update client sites accordingly.
Diffstat (limited to 'Source/cmComputeTargetDepends.cxx')
-rw-r--r-- | Source/cmComputeTargetDepends.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmComputeTargetDepends.cxx b/Source/cmComputeTargetDepends.cxx index 3929af4..75d3967 100644 --- a/Source/cmComputeTargetDepends.cxx +++ b/Source/cmComputeTargetDepends.cxx @@ -255,7 +255,7 @@ void cmComputeTargetDepends::CollectTargetDepends(int depender_index) // A target should not depend on itself. emitted.insert(depender->GetName()); - for(std::vector<cmLinkItem>::const_iterator + for(std::vector<cmLinkImplItem>::const_iterator lib = impl->Libraries.begin(); lib != impl->Libraries.end(); ++lib) { |