Created a Framework:
framework module MyModule { umbrella header "MyModule.h" export * module * { export * } } module MyModule.Swift { header "MyModule-Swift.h" } But when compiling produces an error:
Header "MyModule-Swift.h" not found.
What have I done wrong?
Swift2, XCode7.2, Defines Module YES. Privacy is worth Public . It seems that the file MyModule-Swift.h is not being created.