Files
Sergej Jaskiewicz e3b5dc509c [K/N] De-duplicate code for mangling objc interop function names
Extract the duplicated functionality to the
`ObjCFunctionNameMangleComputer` class.
2023-09-13 14:25:11 +00:00

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" {}
}