mirror of
https://github.com/Kitware/CMake.git
synced 2026-03-14 05:20:50 -05:00
Merge topic 'ios-framework-resource-layout'
e76ee2c0 iOS: Fix framework resource directory layout (#15848)
This commit is contained in:
@@ -3752,7 +3752,11 @@ void cmGeneratorTarget::ConstructSourceFileFlags() const
|
||||
if(cmSourceFile* sf = this->Makefile->GetSource(*it))
|
||||
{
|
||||
SourceFileFlags& flags = this->SourceFlagsMap[sf];
|
||||
flags.MacFolder = "Resources";
|
||||
flags.MacFolder = "";
|
||||
if(!this->Makefile->PlatformIsAppleIos())
|
||||
{
|
||||
flags.MacFolder = "Resources";
|
||||
}
|
||||
flags.Type = cmGeneratorTarget::SourceFileTypeResource;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user