tapchicoma
12/04/2019, 9:57 PMStandard CLI library kotlinx.cli is shipped with the compiler distribution (GH-3215)Does it mean that I could use
kotlinx.cli
without adding any dependency to it?Dominaezzz
12/04/2019, 10:07 PMtapchicoma
12/04/2019, 10:10 PMkotlinx.cli
. After adding again direct dependency they are available 🤔olonho
12/05/2019, 2:58 AMElena Lepilkina
12/05/2019, 4:08 AMcompilations["main"].enableEndorsedLibs = true
. Example https://github.com/JetBrains/kotlin-native/blob/master/samples/videoplayer/build.gradle.kts#L49
Then all classes will be available from IDEA without any dependencies.
This is made so because we don't want developers using old version via dependencies have any troubles.
kotlinx.cli
is available if you run konanc
from command line without any settings.tapchicoma
12/05/2019, 9:19 AMnapperley
12/06/2019, 1:05 AMElena Lepilkina
12/06/2019, 3:54 AMkotlinx.cli
, but it's possible that some other libraries will be added later.