Skip to content

Commit 7dbd115

Browse files
authored
Configure native targets directly, without using the infra plugin (#215)
1 parent 4af5b47 commit 7dbd115

File tree

1 file changed

+5
-7
lines changed

1 file changed

+5
-7
lines changed

benchmarks/build.gradle.kts

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,10 @@ evaluationDependsOn(":kotlinx-collections-immutable")
1414

1515
@OptIn(ExperimentalKotlinGradlePluginApi::class)
1616
kotlin {
17-
infra {
18-
target("macosX64")
19-
target("macosArm64")
20-
target("linuxX64")
21-
target("mingwX64")
22-
}
17+
macosX64()
18+
macosArm64()
19+
linuxX64()
20+
mingwX64()
2321

2422
jvm {
2523
compilerOptions {
@@ -115,4 +113,4 @@ val benchmarksJar: Configuration by configurations.creating
115113
afterEvaluate {
116114
val jvmBenchmarkJar by tasks.getting(Jar::class)
117115
artifacts.add("benchmarksJar", jvmBenchmarkJar)
118-
}
116+
}

0 commit comments

Comments
 (0)