ok, now I've got a simple kotlin-multiplatform tar...
# kotlin-native
d
ok, now I've got a simple kotlin-multiplatform target question. As you can see here, I'm using fromPreset(presets.iosX64) and seems to make two gradle tasks, 1) for an ios Framework and 2) for a klib. How do I re-write my gradle code to ONLY produce the Framework tasks?
i
The klib is a main output of a compilation like
.class
files in Java. A test executable is linked against it and also it's used to represent a case when one compilation depends on an output of another. So there are no special API to disable compilation of this klib. Why do you need to disable compilation of the klib?