diff options
author | Stephen Kelly <steveire@gmail.com> | 2014-03-17 23:09:40 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2014-03-20 21:09:32 (GMT) |
commit | f1fd3714a40327c461633b64d82f6815ed3e7817 (patch) | |
tree | 3c21f7028c108a5266d033d3004a51c69a3927b0 /Source/cmMakefile.cxx | |
parent | 0f79dab48bf17e867fe19a7b7140fa7513f4b72d (diff) | |
download | CMake-f1fd3714a40327c461633b64d82f6815ed3e7817.zip CMake-f1fd3714a40327c461633b64d82f6815ed3e7817.tar.gz CMake-f1fd3714a40327c461633b64d82f6815ed3e7817.tar.bz2 |
cmMakefile: Report type of INTERFACE library in conflict.
Diffstat (limited to 'Source/cmMakefile.cxx')
-rw-r--r-- | Source/cmMakefile.cxx | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Source/cmMakefile.cxx b/Source/cmMakefile.cxx index f82acc8..dce71de 100644 --- a/Source/cmMakefile.cxx +++ b/Source/cmMakefile.cxx @@ -4200,6 +4200,9 @@ bool cmMakefile::EnforceUniqueName(std::string const& name, std::string& msg, case cmTarget::UTILITY: e << "a custom target "; break; + case cmTarget::INTERFACE_LIBRARY: + e << "an interface library "; + break; default: break; } e << "created in source directory \"" |