Is there an option to include another modules in my KMM shared module? I have a module called API, which contains a few kotlin classes that I would like to expose to the platforms, but I need to keep them in a separate module (as they are used by KSP for processing). I thought about adding second KMM module, but I run into weird problems (could not compile iOS part of the project as Android Studio was unable to find Xcode command line tools, but from my first KMM module it worked just fine). I found a workaround of copying the classes to commonMain of my shared module, which works, but don't like the prospect to have the file duplicates in the project. Is there a better way how to add module content into a KMM module?