hey, i created a little kotlin multiplatform libra...
# community-support
c
hey, i created a little kotlin multiplatform library template project with the following structure: Root project 'kotlin-library-template' +--- Project ':core' \--- Project ':extensions' \--- Project 'extensionsexample' i want 'extensions' to be just a folder that houses different projects (like 'example'). but 'extensions' folder is recognized as project as well. how can i exclude 'extensions' folder from being recognized as project? https://github.com/christian-draeger/kotlin-library-template
v
Don't add it as project, you define the projects that exist in your settings script. If you add
:extensions:example
that adds two projects. Just add
example
and then set the project directory to
extensions/example
in the next line.
👍 1