[FIR/Native] Move fir-related code from backend.native module to new one

^KT-61249
This commit is contained in:
Pavel Kunyavskiy
2023-08-16 11:22:08 +02:00
committed by Space Team
parent fdab636a1b
commit 8bcd1f4efa
16 changed files with 103 additions and 47 deletions
+18
View File
@@ -0,0 +1,18 @@
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"))
}
sourceSets {
"main" { projectDefault() }
"test" {}
}