Native: fix curl sample test

This commit is contained in:
Svyatoslav Scherbina
2023-02-03 14:15:20 +01:00
committed by Space Team
parent 71a1585240
commit 1828f7a374
@@ -46,7 +46,7 @@ kotlin {
}
}
// The code snippet below is needed to make all compile tasks depend on publication of
// The code below is needed to make all compile tasks depend on publication of
// "libcurl" library. So that to the time of compilation the library will already be
// in Maven repo and will be successfully resolved as a dependency of this project.
targets.all {
@@ -54,6 +54,10 @@ kotlin {
compileKotlinTask.dependsOn(":libcurl:publish")
}
}
tasks.withType<org.jetbrains.kotlin.gradle.plugin.mpp.MetadataDependencyTransformationTask> {
dependsOn(":libcurl:publish")
}
}
// The following snippet is needed to give instructions for IDEA user who just imported project