GenEx: Add an accessor for imported targets in a makefile.
This commit is contained in:
parent
7ded904329
commit
04421042b3
|
@ -519,6 +519,10 @@ public:
|
||||||
* Get the list of targets, const version
|
* Get the list of targets, const version
|
||||||
*/
|
*/
|
||||||
const cmTargets &GetTargets() const { return this->Targets; }
|
const cmTargets &GetTargets() const { return this->Targets; }
|
||||||
|
const std::vector<cmTarget*> &GetOwnedImportedTargets() const
|
||||||
|
{
|
||||||
|
return this->ImportedTargetsOwned;
|
||||||
|
}
|
||||||
|
|
||||||
const cmGeneratorTargetsType &GetGeneratorTargets() const
|
const cmGeneratorTargetsType &GetGeneratorTargets() const
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue