Introduce compiler.common.native module

This commit is contained in:
Pavel Kunyavskiy
2023-07-03 14:46:15 +02:00
committed by Space Team
parent c1b70a7303
commit 0179b45840
4 changed files with 18 additions and 0 deletions
+1
View File
@@ -214,6 +214,7 @@
/core/compiler.common/ "Kotlin Compiler Core"
/core/compiler.common.jvm/ "Kotlin Compiler Core"
/core/compiler.common.js/ "Kotlin Compiler Core"
/core/compiler.common.native/ "Kotlin Compiler Core"
/core/descriptors/ "Kotlin Compiler Core"
/core/descriptors.jvm/ "Kotlin Compiler Core"
/core/descriptors.runtime/ "Kotlin Libraries"
+2
View File
@@ -133,6 +133,7 @@ val commonCompilerModules = arrayOf(
":core:compiler.common",
":core:compiler.common.jvm",
":core:compiler.common.js",
":core:compiler.common.native",
":core:util.runtime",
":compiler:frontend.common.jvm",
":compiler:frontend.java", // TODO this is fe10 module but some utils used in fir ide now
@@ -239,6 +240,7 @@ extra["kotlinJpsPluginEmbeddedDependencies"] = listOf(
":core:compiler.common",
":core:compiler.common.jvm",
":core:compiler.common.js",
":core:compiler.common.native",
":core:descriptors",
":core:descriptors.jvm",
":compiler:backend.common.jvm",
@@ -0,0 +1,14 @@
plugins {
kotlin("jvm")
id("jps-compatible")
}
project.configureJvmToolchain(JdkMajorVersion.JDK_1_8)
dependencies {
implementation(project(":core:compiler.common"))
}
sourceSets {
"main" { projectDefault() }
}
+1
View File
@@ -107,6 +107,7 @@ include ":benchmarks",
":core:compiler.common",
":core:compiler.common.jvm",
":core:compiler.common.js",
":core:compiler.common.native",
":compiler:backend.common.jvm",
":core:descriptors",
":core:descriptors.jvm",