[K/N] Move IR-related ObjC interop helpers to a new common module
This is a step towards KT-61248. We need those helpers to be available in non-Native-specific code.
This commit is contained in:
committed by
teamcity
parent
5cb252fe49
commit
d1127f1a31
@@ -0,0 +1,19 @@
|
||||
plugins {
|
||||
kotlin("jvm")
|
||||
id("jps-compatible")
|
||||
}
|
||||
|
||||
dependencies {
|
||||
api(project(":core:compiler.common"))
|
||||
api(project(":compiler:ir.tree"))
|
||||
|
||||
implementation(project(":core:compiler.common.native"))
|
||||
|
||||
compileOnly(intellijCore())
|
||||
}
|
||||
|
||||
sourceSets {
|
||||
"main" { projectDefault() }
|
||||
}
|
||||
|
||||
optInToIrSymbolInternals()
|
||||
Reference in New Issue
Block a user