File tree Expand file tree Collapse file tree 2 files changed +10
-2
lines changed Expand file tree Collapse file tree 2 files changed +10
-2
lines changed Original file line number Diff line number Diff line change
1
+ buildscript {
2
+ // Workaround, remove once kotlinx.benchmark build for 1.4-M2 is available
3
+ configurations[" classpath" ].resolutionStrategy.eachDependency {
4
+ if (requested.group == " org.jetbrains.kotlin" )
5
+ useVersion(System .getProperty(" build.kotlinVersion" ))
6
+ }
7
+ }
8
+
1
9
plugins {
2
10
kotlin(" multiplatform" )
3
11
kotlin(" plugin.allopen" )
Original file line number Diff line number Diff line change @@ -90,10 +90,10 @@ kotlin.sourceSets.commonMain {
90
90
91
91
// region Publication
92
92
93
- val publicationsFromWindows = listOf (" mingwX64" )
93
+ val publicationsFromWindows = listOf (" mingwX64" , " mingwX86 " )
94
94
95
95
val publicationsFromMacos =
96
- kotlin.targets.withType(org.jetbrains.kotlin.gradle.plugin.mpp. KotlinNativeTarget :: class ). names.filter {
96
+ kotlin.targets.names.filter {
97
97
it.startsWith(" macos" ) || it.startsWith(" ios" ) || it.startsWith(" watchos" ) || it.startsWith(" tvos" )
98
98
}
99
99
You can’t perform that action at this time.
0 commit comments