From 632739c551e00d712069f12a0184756d04e8634e Mon Sep 17 00:00:00 2001 From: Ugljesa Jovanovic Date: Sun, 17 May 2020 00:08:55 +0200 Subject: [PATCH] fix mac build --- multiplatform-crypto/build.gradle.kts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/multiplatform-crypto/build.gradle.kts b/multiplatform-crypto/build.gradle.kts index e3c43e0..3fd5285 100644 --- a/multiplatform-crypto/build.gradle.kts +++ b/multiplatform-crypto/build.gradle.kts @@ -125,7 +125,7 @@ kotlin { } - if (hostOsName == "mac") { + if (hostOsName == "macos") { iosX64("ios") { binaries { framework { @@ -277,7 +277,7 @@ kotlin { } - if (hostOsName == "mac") { + if (hostOsName == "macos") { val iosMain by getting { dependsOn(nativeMain) @@ -378,7 +378,7 @@ tasks { val npmInstall by getting val compileKotlinJs by getting(AbstractCompile::class) val compileTestKotlinJs by getting(Kotlin2JsCompile::class) - + val jvmTest by getting(Test::class) { testLogging { events("PASSED", "FAILED", "SKIPPED")