Hi all,
I'm building a framework and I decided to include some new libraries using Swift. My original framework was built in Objective-C after adding the new code everything seemed to be fine no erros at all but once I try to build the project I got the error message: "umbrella header project.h not found" uthis under the unextended-module.modulemap file the file looks like
framework module Project {
umbrella header "Project.h"
export *
module * { export * }
}
module Project.__Swift {
exclude header "Project-Swift.h"
}
Any help will be highly appreciated it as I have try differente things in the "Build Settings"
Before this I was using a bridging file but apparently bridging files are not allowed on Frameworks.