We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4af5b47 commit 7dbd115Copy full SHA for 7dbd115
benchmarks/build.gradle.kts
@@ -14,12 +14,10 @@ evaluationDependsOn(":kotlinx-collections-immutable")
14
15
@OptIn(ExperimentalKotlinGradlePluginApi::class)
16
kotlin {
17
- infra {
18
- target("macosX64")
19
- target("macosArm64")
20
- target("linuxX64")
21
- target("mingwX64")
22
- }
+ macosX64()
+ macosArm64()
+ linuxX64()
+ mingwX64()
23
24
jvm {
25
compilerOptions {
@@ -115,4 +113,4 @@ val benchmarksJar: Configuration by configurations.creating
115
113
afterEvaluate {
116
114
val jvmBenchmarkJar by tasks.getting(Jar::class)
117
artifacts.add("benchmarksJar", jvmBenchmarkJar)
118
-}
+}
0 commit comments