fkrauthan
03/10/2020, 11:11 PMjvm
, macosX64
and linuxX64
as targets as well as a commonMain
with most of my code and a posixMain
source set where macos and linux main source sets are depending on. But for some reason I don't seem to have access to any of the default interops e,g, platform.posix
nether in posixMain
nor in linuxMain
and macosMain
. Is there anything else I need to configure to be able to access them (preferable in my posixMain
source set?russhwolf
03/10/2020, 11:35 PMkotlin.mpp.enableGranularSourceSetsMetadata=true
in your gradle.properties
which enables an experimental project model that will eventually make this work better. Might not help though.fkrauthan
03/10/2020, 11:38 PMrusshwolf
03/10/2020, 11:40 PMfkrauthan
03/10/2020, 11:43 PMNative
platform
does not existrusshwolf
03/10/2020, 11:49 PMfkrauthan
03/10/2020, 11:52 PMlinuxMain
russhwolf
03/10/2020, 11:52 PMfkrauthan
03/10/2020, 11:52 PM