I have following config in `build.gradle` that app...
# kotlin-native
t
I have following config in
build.gradle
that applies
konan
plugin:
Copy code
program("foo") {
        entryPoint("org.jlleitschuh.gradle.ktlint.sample.native.main")
    }
what will be equivalent in new experimental
"org.jetbrains.kotlin.native"
plugin? Can figure this out from documentation.
t
outputKinds = [EXECUTABLE]
t
it complains that it can't find
main
.
Main.kt
is in package, not in root source folder.
o
main must be in top level package, which folder it is does not matter
t
so
entryPoint
is kind of deprecated?
o
Shall work, file a bug if not
t
in experimetal plugin there is no such config. Ok, will open an issue 👍