Using Xcode 14.2, Swift 5.7.
Workspace with two projects. Both projects comprised of Swift and Obj-C files.
Docc generated documentation for one of the projects contains both Swift & Obj-C API documentation.
The other only contains Swift API documentation.
Looked at the build logs, and the project with both languages output runs through the following documentation-related steps:
- WriteAuxiliaryFile (extractapi) ...
- ExtractAPI ...
- ConvertSDKDBToSymbolGraph ...
- CompileDocumentation ...
The other, that only generates Swift API documentation has these steps:
- WriteAuxiliaryFile (extractapi) ...
- CompileDocumentation ...
Looking for ideas on how to ensure ExtractAPI and ConvertSDKDBToSymbolGraph steps occur for the latter project. Believe those steps are the reason for missing Obj-C documentation.
Is there a build setting (or some other setting) missing that leads to no Obj-C API documentation?