From d02fd5ec1b686dc4025dfe97c28247dc965fc1f2 Mon Sep 17 00:00:00 2001 From: Svyatoslav Scherbina Date: Tue, 31 Jan 2017 13:30:56 +0700 Subject: [PATCH] build: add Interop/Runtime to stdlib --- backend.native/build.gradle | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/backend.native/build.gradle b/backend.native/build.gradle index 6ae53526e12..cd106cbace0 100644 --- a/backend.native/build.gradle +++ b/backend.native/build.gradle @@ -204,9 +204,13 @@ targetList.each { target -> '-runtime', project(':runtime').file("build/${target}/runtime.bc"), '-properties', project(':backend.native').file('konan.properties'), project(':runtime').file('src/main/kotlin'), + project(':Interop:Runtime').file('src/main/kotlin'), + project(':Interop:Runtime').file('src/native/kotlin'), *project.globalArgs) inputs.dir(project(':runtime').file('src/main/kotlin')) + inputs.dir(project(':Interop:Runtime').file('src/main/kotlin')) + inputs.dir(project(':Interop:Runtime').file('src/native/kotlin')) outputs.file(project(':runtime').file("build/${target}/stdlib.kt.bc")) dependsOn ":runtime:${target}Runtime"