Currently, I'm mixing the Swift and C sources to assemble a single framework.
To do so, I already made a modulemap for each of a module, and build & import to an app bundle is fine.
WORKSPACE structure:
- Tester App (Framework-importing-app)
- Framework
But the problem here is, when I try to import it into OTHER app, it cannot find ANY of C-generated module (All swift module are fine).
What's happening here? do I miss anything?