GenEx: Add an accessor for imported targets in a makefile.

This commit is contained in:
Stephen Kelly 2012-10-10 00:06:40 +02:00 committed by Brad King
parent 7ded904329
commit 04421042b3
1 changed files with 4 additions and 0 deletions

View File

@ -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
{