diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2005-03-04 03:35:06 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2005-03-04 03:35:06 (GMT) |
commit | a9a0c91630401a84bbbc48c07e9a9e3cd7d81761 (patch) | |
tree | 11aa6472ee2349b94151e29671325ada15dca238 /Source/cmGlobalGenerator.h | |
parent | ed1afcdaee356c0e353f00c27a57014dc59023ab (diff) | |
download | CMake-a9a0c91630401a84bbbc48c07e9a9e3cd7d81761.zip CMake-a9a0c91630401a84bbbc48c07e9a9e3cd7d81761.tar.gz CMake-a9a0c91630401a84bbbc48c07e9a9e3cd7d81761.tar.bz2 |
ENH: fix for finding the correct target in the current project
Diffstat (limited to 'Source/cmGlobalGenerator.h')
-rw-r--r-- | Source/cmGlobalGenerator.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmGlobalGenerator.h b/Source/cmGlobalGenerator.h index 7832a96..7cce345 100644 --- a/Source/cmGlobalGenerator.h +++ b/Source/cmGlobalGenerator.h @@ -160,7 +160,7 @@ protected: void RecursiveConfigure(cmLocalGenerator *lg, float start, float end); ///! Find a target by name by searching the local generators. - cmTarget* FindTarget(const char* name); + cmTarget* FindTarget(const char* project, const char* name); private: // If you add a new map here, make sure it is copied // in EnableLanguagesFromGenerator |