diff options
author | Brad King <brad.king@kitware.com> | 2008-02-14 21:42:29 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2008-02-14 21:42:29 (GMT) |
commit | 1c0595c73fe1fa88b67691794eef8ee10edfc257 (patch) | |
tree | fd453a6e799d7d5f4ee6e1f01096a40cb8aadb1d /Source/cmMakefile.h | |
parent | 67f8c0fd104fe6ec1b6c1df2ebce6fdb9b2c811f (diff) | |
download | CMake-1c0595c73fe1fa88b67691794eef8ee10edfc257.zip CMake-1c0595c73fe1fa88b67691794eef8ee10edfc257.tar.gz CMake-1c0595c73fe1fa88b67691794eef8ee10edfc257.tar.bz2 |
ENH: Add global property ALLOW_DUPLICATE_CUSTOM_TARGETS to help existing projects that depend on having duplicate custom targets. It is allowed only for Makefile generators. See bug#6348.
Diffstat (limited to 'Source/cmMakefile.h')
-rw-r--r-- | Source/cmMakefile.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/cmMakefile.h b/Source/cmMakefile.h index f3714cb..4c99df1 100644 --- a/Source/cmMakefile.h +++ b/Source/cmMakefile.h @@ -132,7 +132,8 @@ public: /** * Help enforce global target name uniqueness. */ - bool EnforceUniqueName(std::string const& name, std::string& msg); + bool EnforceUniqueName(std::string const& name, std::string& msg, + bool isCustom = false); /** * Perform FinalPass, Library dependency analysis etc before output of the |