I have an existing Objective-C iOS project and I want to add fast files to it. The project has 2 goals.
I created the bridge header MyProject-Bridging-Header.h and the automatically generated bridge header MyProject-Swift.h is generated by Xcode, as expected. But only for the purpose of "A".
Target "B" does not display the file MyProject-Swift.h. The reason is that the target does not have “fast compiler code generation”, which is responsible for the automatic generation of this file.
I tried to set the file at the project level - I expected to inherit the goals. But that does not work.
How do I get “quick compiler code generation” into existing manual build settings?
source share