Make klib info report targets available.

This commit is contained in:
Alexander Gorshenev
2017-06-06 15:06:41 +03:00
committed by alexander-gorshenev
parent 646117a60b
commit 114010bbcd
4 changed files with 8 additions and 4 deletions
+2 -2
View File
@@ -352,7 +352,7 @@ targetList.each { target ->
from(project(':runtime').file("build/$target")) {
include("*.bc")
into("klib/stdlib/$target/native")
into("klib/stdlib/targets/$target/native")
}
from(project(':runtime').file("build/${target}Stdlib")) {
include('**')
@@ -360,7 +360,7 @@ targetList.each { target ->
}
from(project(':runtime').file("build/${target}Start.bc")) {
rename("${target}Start.bc", 'start.bc')
into("klib/stdlib/$target/native")
into("klib/stdlib/targets/$target/native")
}
}
}