Hi all. By declaring native target in MPP plugin, ...
# kotlin-native
b
Hi all. By declaring native target in MPP plugin, it seems to download and setup
.konan
home dir for native compiler. How can I extract the property of that dir in gradle config?
m
from HACKING.md: KONAN_DATA_DIR changes
.konan
local data directory location (
$HOME/.konan
by default). Works both with cli compiler and gradle plugin
val konanDataDir = System.getenv("KONAN_DATA_DIR") ?: "${System.getProperty("user.home")}/.konan
`