Ninja: Use same echo message as makefiles.

This commit is contained in:
Nicolas Despres 2012-07-11 12:58:01 +02:00 committed by Peter Kümmel
parent 7bb56c511e
commit 3b2a01e80e
1 changed files with 4 additions and 1 deletions

View File

@ -125,7 +125,10 @@ const char *cmNinjaNormalTargetGenerator::GetVisibleTypeName() const
case cmTarget::SHARED_LIBRARY: case cmTarget::SHARED_LIBRARY:
return "shared library"; return "shared library";
case cmTarget::MODULE_LIBRARY: case cmTarget::MODULE_LIBRARY:
return "shared module"; if (this->GetTarget()->IsCFBundleOnApple())
return "CFBundle shared module";
else
return "shared module";
case cmTarget::EXECUTABLE: case cmTarget::EXECUTABLE:
return "executable"; return "executable";
default: default: