| plugins { | |
| kotlin("jvm") | |
| id("jps-compatible") | |
| } | |
| dependencies { | |
| api(project(":compiler:ir.tree")) | |
| api(project(":compiler:ir.serialization.common")) | |
| implementation(project(":compiler:fir:fir2ir")) | |
| implementation(project(":compiler:fir:tree")) | |
| implementation(project(":compiler:ir.objcinterop")) | |
| implementation(project(":core:compiler.common.native")) | |
| compileOnly(intellijCore()) | |
| } | |
| optInToUnsafeDuringIrConstructionAPI() | |
| sourceSets { | |
| "main" { projectDefault() } | |
| } |