Tristan
08/31/2022, 3:20 AM/common I have nativeMain, so /common/nativeMain and I’d like this folder to be use for macosX64 and linuxX64.
I tried something like this, but it does seem to be it (I am getting KotlinSourceSet not found)
val nativeMain by creating {
dependsOn(commonMain)
dependencies {
implementation(Deps.Ktor.clientCurl)
}
}
val nativeTest by creating {
dependsOn(commonTest)
}
val macosX64 by getting {
dependsOn(nativeMain)
}Tristan
08/31/2022, 3:27 AMmacosX64Main … I am sorry for the noise.