File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 1
- import org.jetbrains.kotlin.gradle.tasks.KotlinCompilationTask
2
-
3
1
plugins {
4
2
// this is necessary to avoid the plugins to be loaded multiple times
5
3
// in each subproject's classloader
@@ -13,9 +11,10 @@ allprojects {
13
11
version = " 0.0.2"
14
12
}
15
13
14
+ /*
16
15
tasks.withType<org.jetbrains.kotlin.gradle.tasks.KotlinCompile>().configureEach {
17
16
compilerOptions {
18
17
freeCompilerArgs.add("-Xallocator=std")
19
18
freeCompilerArgs.add("-Xruntime-logs=gc=info")
20
19
}
21
- }
20
+ }*/
Original file line number Diff line number Diff line change 1
1
import dev.mokkery.MockMode
2
+ import org.jetbrains.kotlin.gradle.ExperimentalKotlinGradlePluginApi
2
3
3
4
plugins {
4
5
alias(libs.plugins.kotlin.multiplatform)
@@ -14,10 +15,10 @@ kotlin {
14
15
// linuxArm64() // https://youtrack.jetbrains.com/issue/KT-36871/Support-Aarch64-Linux-as-a-host-for-the-Kotlin-Native
15
16
linuxX64()
16
17
17
- /* @OptIn(ExperimentalKotlinGradlePluginApi::class)
18
+ @OptIn(ExperimentalKotlinGradlePluginApi ::class )
18
19
compilerOptions {
19
20
freeCompilerArgs.add(" -Xallocator=std" )
20
- }*/
21
+ }
21
22
22
23
sourceSets {
23
24
commonMain.dependencies {
You can’t perform that action at this time.
0 commit comments