From 04421042b3eb5977208929ba01faf7816c2f8f69 Mon Sep 17 00:00:00 2001 From: Stephen Kelly Date: Wed, 10 Oct 2012 00:06:40 +0200 Subject: [PATCH] GenEx: Add an accessor for imported targets in a makefile. --- Source/cmMakefile.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Source/cmMakefile.h b/Source/cmMakefile.h index 80a50d6e6..70cfe5421 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 &GetOwnedImportedTargets() const + { + return this->ImportedTargetsOwned; + } const cmGeneratorTargetsType &GetGeneratorTargets() const {