I have a custom framework that is using a module to allow Swift to interface with Objective-C. I have the path to the module listed in the frameworks build settings->input paths and my module.modulemap looks like below:
module ObjcHeaders {
umbrella header "ObjcHeader.h"
export *
}
When I have an app consume the framework I get the error ".h' file not found" for every .h file listed in the header. Along with "could not build Objective-C module 'ObjcHeaders"