Bruno Cardoso Lopes 08ebd61a80 [Modules] Find PrivateHeaders when looking into subframeworks
Fix the current parsing of subframeworks in modulemaps to lookup for
headers based on whether they are frameworks.

rdar://problem/30563982

llvm-svn: 298391
2017-03-21 16:43:51 +00:00

13 lines
186 B
Plaintext

framework module Main {
umbrella header "Main.h"
module * { export * }
export *
framework module Sub {
umbrella header "Sub.h"
module * { export * }
export *
}
}