Move KonanBuiltIns to a separate module (#1860)

1. Separate (temporary) modules for the code to be moved to https://github.com/JetBrains/kotlin repo
2. KonanBuiltIns, functions for creation of module descriptors and interop descriptors and moved to "konan.descriptors" module 
3. Re-organizing KonanModuleOrigin and it's inheritors to better naming/understanding
This commit is contained in:
Dmitriy Dolovov
2018-08-14 13:20:28 +03:00
committed by GitHub
parent 6064cc9a34
commit a4a235be42
45 changed files with 489 additions and 447 deletions
+12
View File
@@ -251,6 +251,18 @@ task distCompiler(type: Copy) {
into('konan/lib')
}
from(file("${gradle.includedBuild('konan.descriptors').projectDir}/build/libs")) {
into('konan/lib')
}
from(file("${gradle.includedBuild('konan.metadata').projectDir}/build/libs")) {
into('konan/lib')
}
from(file("${gradle.includedBuild('konan.metadata.serializer').projectDir}/build/libs")) {
into('konan/lib')
}
from(file('cmd')) {
fileMode(0755)
into('bin')