[js-interop] Include JS interop into stdlib

This commit is contained in:
Ilya Matveev
2018-02-28 15:00:20 +03:00
committed by ilmat192
parent 2e54fb9144
commit ffae98f7e0
10 changed files with 201 additions and 75 deletions
+4 -2
View File
@@ -291,8 +291,10 @@ targetList.each { target ->
into("konan/targets/$target/native")
}
if (target == 'wasm32') {
from(project(':runtime').file('src/launcher/js')) {
into("$stdlib/targets/wasm32/included")
into("$stdlib/targets/wasm32/included") {
from(project(':runtime').file('src/main/js'))
from(project(':runtime').file('src/launcher/js'))
from(project(':Interop:JsRuntime').file('src/main/js'))
}
}
}