e3b5dc509c
Extract the duplicated functionality to the `ObjCFunctionNameMangleComputer` class.
20 lines
488 B
Kotlin
20 lines
488 B
Kotlin
plugins {
|
|
kotlin("jvm")
|
|
id("jps-compatible")
|
|
}
|
|
|
|
dependencies {
|
|
implementation(project(":core:compiler.common.native"))
|
|
implementation(project(":compiler:frontend.common"))
|
|
implementation(project(":compiler:fir:resolve"))
|
|
implementation(project(":compiler:fir:fir2ir"))
|
|
implementation(project(":compiler:ir.serialization.common"))
|
|
implementation(project(":compiler:ir.serialization.native"))
|
|
}
|
|
|
|
|
|
sourceSets {
|
|
"main" { projectDefault() }
|
|
"test" {}
|
|
}
|