Add stdlib to composite build of Kotlin + Kotlin/Native

This commit is contained in:
Pavel Punegov
2018-12-03 14:48:40 +03:00
committed by Pavel Punegov
parent e436e7cf61
commit d90a92ae06
2 changed files with 14 additions and 0 deletions
@@ -0,0 +1,13 @@
plugins {
kotlin("jvm")
}
val sources by configurations.creating
dependencies {
sources(project(":kotlin-stdlib-common", configuration = "sources"))
}
artifacts {
add("runtime", provider { sources.singleFile })
}