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

12 lines
184 B
Plaintext

module Main.Private {
umbrella header "MainPriv.h"
module * { export * }
export *
}
module Main.Sub.Private {
umbrella header "SubPriv.h"
module * { export * }
export *
}