diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-10-25 12:06:37 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-10-27 06:44:25 (GMT) |
commit | 278ba2db477fdc8cccd2313eb56e0179234747a0 (patch) | |
tree | f4a112e1690b19f018254be7cae7def862d5fc21 /Source/cmGeneratorTarget.cxx | |
parent | 79c11d23405d3894a254a8c03df5ead32464b109 (diff) | |
download | CMake-278ba2db477fdc8cccd2313eb56e0179234747a0.zip CMake-278ba2db477fdc8cccd2313eb56e0179234747a0.tar.gz CMake-278ba2db477fdc8cccd2313eb56e0179234747a0.tar.bz2 |
cmGeneratorTarget: Add API for globally visible IMPORTED
Diffstat (limited to 'Source/cmGeneratorTarget.cxx')
-rw-r--r-- | Source/cmGeneratorTarget.cxx | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Source/cmGeneratorTarget.cxx b/Source/cmGeneratorTarget.cxx index 9376e98..1f74eda 100644 --- a/Source/cmGeneratorTarget.cxx +++ b/Source/cmGeneratorTarget.cxx @@ -856,6 +856,11 @@ bool cmGeneratorTarget::IsImported() const return this->Target->IsImported(); } +bool cmGeneratorTarget::IsImportedGloballyVisible() const +{ + return this->Target->IsImportedGloballyVisible(); +} + //---------------------------------------------------------------------------- const char* cmGeneratorTarget::GetLocationForBuild() const { |