serebit
12/08/2018, 5:35 AMposix
source set that has access to platform.posix
, which both macos
and linux
depend on? Or do I just have to copy-paste everything between the two source sets.
Edit: Seems like it's possible, but IntelliJ doesn't seem to like it.pajatopmr
12/08/2018, 6:50 AMmsink
12/08/2018, 7:30 AMsourceSets {
linuxMain {
kotlin.srcDir('src/posixMain/kotlin')
}
macosMain {
kotlin.srcDir('src/posixMain/kotlin')
}
}
Thomas
03/05/2019, 2:09 PMkotlin.native...
code in nativeMain.serebit
03/05/2019, 3:37 PMnativeMain
source set works with Gradle, but not IntelliJ.XQDD
09/30/2019, 1:57 PM