Files
kotlin-fork/native/frontend/build.gradle.kts
T
Pavel Kunyavskiy 6da3ecceab [K/N] Implement frontend checkers for usages forward declaration type
Forward declaration type doesn't exist in runtime. This restricts
its possible usages.

^KT-59764
2023-07-17 09:24:33 +00:00

20 lines
401 B
Kotlin

plugins {
kotlin("jvm")
id("jps-compatible")
}
dependencies {
compileOnly(project(":compiler:frontend"))
compileOnly(project(":compiler:frontend.java"))
compileOnly(project(":core:compiler.common.native"))
compileOnly(intellijCore())
api(project(":native:kotlin-native-utils"))
}
sourceSets {
"main" { projectDefault() }
"test" { none() }
}
standardPublicJars()