Files
kotlin-fork/samples/weather_function/function/build.gradle.kts
T
2018-08-07 12:33:53 +03:00

25 lines
384 B
Kotlin

group = "org.example"
version = "0.1-SNAPSHOT"
plugins {
id("konan")
}
konanArtifacts {
interop("curl") {
defFile("curl.def")
}
interop("cjson") {
defFile("cjson.def")
}
program("weather") {
entryPoint("org.example.weather_func.main")
libraries {
artifact("cjson")
artifact("curl")
}
}
}