summaryrefslogtreecommitdiffstats
path: root/Source/cmMakefile.h
diff options
context:
space:
mode:
authorStephen Kelly <steveire@gmail.com>2012-10-09 22:06:40 (GMT)
committerBrad King <brad.king@kitware.com>2012-10-22 18:01:35 (GMT)
commit04421042b3eb5977208929ba01faf7816c2f8f69 (patch)
treeed20a7e38fad2c251b12fdd16cd73034935971a0 /Source/cmMakefile.h
parent7ded904329635b490467ddf06d87b2620da470aa (diff)
downloadCMake-04421042b3eb5977208929ba01faf7816c2f8f69.zip
CMake-04421042b3eb5977208929ba01faf7816c2f8f69.tar.gz
CMake-04421042b3eb5977208929ba01faf7816c2f8f69.tar.bz2
GenEx: Add an accessor for imported targets in a makefile.
Diffstat (limited to 'Source/cmMakefile.h')
-rw-r--r--Source/cmMakefile.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/Source/cmMakefile.h b/Source/cmMakefile.h
index 80a50d6..70cfe54 100644
--- a/Source/cmMakefile.h
+++ b/Source/cmMakefile.h
@@ -519,6 +519,10 @@ public:
* Get the list of targets, const version
*/
const cmTargets &GetTargets() const { return this->Targets; }
+ const std::vector<cmTarget*> &GetOwnedImportedTargets() const
+ {
+ return this->ImportedTargetsOwned;
+ }
const cmGeneratorTargetsType &GetGeneratorTargets() const
{