mirror of
https://github.com/Kitware/CMake.git
synced 2026-05-02 04:09:33 -05:00
BUG: Several fixes to handle bundle content on Mac OSX
This commit is contained in:
@@ -76,6 +76,11 @@ void cmMakefileExecutableTargetGenerator::WriteExecutableRule(bool relink)
|
||||
obj != this->Objects.end(); ++obj)
|
||||
{
|
||||
objTarget = relPath;
|
||||
// Handle extra content on Mac bundles
|
||||
if ( this->ExtraContent.find(*obj) != this->ExtraContent.end() )
|
||||
{
|
||||
objTarget = "";
|
||||
}
|
||||
objTarget += *obj;
|
||||
depends.push_back(objTarget);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user