hi, is it possible to delete a source set or a tar...
# multiplatform
k
hi, is it possible to delete a source set or a target like jvm in a compose multiplatform project? I removed it from build.gradle.kts and also deleted jvmMain and jvmTest directories. Also did clean, build, reindex...of project, but expect functions still require implementation for jvm. What do I miss?
b
It depends on how you defined source sets. Removing jvm() should have been enough and you wouldn't have to delete jvmMain/Test folders since they won't be used. Unless you did manual source configuration like jvmMain.get().dependsOn(commonMain) then remove that as well