I have an objective-c project with one class implemented in Swift. The project has with two targets: A and B. For both of them the Xcode created the bridging header files, A-Swift.h
and B-Swift.h
, and the app builds and runs both targets without any issue.
I've added two new targets, C and D (this time no bridging header files were created). If I build A and B there is no issue, but if I build C and D the build isn't completed because it can't find the B-Swift.h
.
Target C is just a duplication of A, and D a duplication of B, with of course some properties updated in the plist file.
Any suggestion?