ef9413108b
This is refactoring in preparation for KT-59764. Names and layout of forward declarations related classes was copy-pasted many times over compiler code. Implementing KT-59764 would require copy-pasting it two more times. So instead of doing this it was put in single place. No behaviour changes intended in this commit.
28 lines
586 B
Kotlin
28 lines
586 B
Kotlin
plugins {
|
|
kotlin("jvm")
|
|
id("jps-compatible")
|
|
}
|
|
|
|
description = "Common klib metadata reader and writer"
|
|
|
|
dependencies {
|
|
compileOnly(project(":compiler:cli-common"))
|
|
compileOnly(project(":compiler:frontend"))
|
|
compileOnly(project(":core:deserialization"))
|
|
compileOnly(project(":core:compiler.common.native"))
|
|
compileOnly(project(":compiler:serialization"))
|
|
|
|
api(kotlinStdlib())
|
|
api(project(":kotlin-util-io"))
|
|
api(project(":kotlin-util-klib"))
|
|
}
|
|
|
|
sourceSets {
|
|
"main" { projectDefault() }
|
|
"test" { none() }
|
|
}
|
|
|
|
publish()
|
|
|
|
standardPublicJars()
|