diff options
author | Brad King <brad.king@kitware.com> | 2016-04-05 13:37:59 (GMT) |
---|---|---|
committer | CMake Topic Stage <kwrobot@kitware.com> | 2016-04-05 13:37:59 (GMT) |
commit | adea45e15abf95b53e13ea8564cad9fc8e35ed56 (patch) | |
tree | b8a655cd4d53b8cb5a691b6f88c3f825f617d157 /Source/cmMakefile.h | |
parent | 6c60f116cb2bfe6753f526ceacfb5e54bc22efc5 (diff) | |
parent | 0e44f4894f23d5eccd8d360f3420c832f9433a20 (diff) | |
download | CMake-adea45e15abf95b53e13ea8564cad9fc8e35ed56.zip CMake-adea45e15abf95b53e13ea8564cad9fc8e35ed56.tar.gz CMake-adea45e15abf95b53e13ea8564cad9fc8e35ed56.tar.bz2 |
Merge topic 'fix-target-alias-in-subdir'
0e44f489 Rename local target lookup methods to clarify purpose
bc30f8b5 Fix lookup of an ALIAS target outside aliased target's directory (#16044)
Diffstat (limited to 'Source/cmMakefile.h')
-rw-r--r-- | Source/cmMakefile.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Source/cmMakefile.h b/Source/cmMakefile.h index 362ea75..45f2efb 100644 --- a/Source/cmMakefile.h +++ b/Source/cmMakefile.h @@ -388,8 +388,7 @@ public: } std::vector<cmTarget*> GetImportedTargets() const; - cmTarget* FindTarget(const std::string& name, - bool excludeAliases = false) const; + cmTarget* FindLocalNonAliasTarget(const std::string& name) const; /** Find a target to use in place of the given name. The target returned may be imported or built within the project. */ |