f624800b84
I was forced to manually do update the following files, because otherwise they would be ignored according .gitignore settings. Probably they should be deleted from repo. Interop/.idea/compiler.xml Interop/.idea/gradle.xml Interop/.idea/libraries/Gradle__org_jetbrains_kotlin_kotlin_runtime_1_0_3.xml Interop/.idea/libraries/Gradle__org_jetbrains_kotlin_kotlin_stdlib_1_0_3.xml Interop/.idea/modules.xml Interop/.idea/modules/Indexer/Indexer.iml Interop/.idea/modules/Runtime/Runtime.iml Interop/.idea/modules/StubGenerator/StubGenerator.iml backend.native/backend.native.iml backend.native/bc.frontend/bc.frontend.iml backend.native/cli.bc/cli.bc.iml backend.native/cli.bc/src/org/jetbrains/kotlin/cli/bc/K2Native.kt backend.native/cli.bc/src/org/jetbrains/kotlin/cli/bc/K2NativeCompilerArguments.kt backend.native/tests/link/lib/foo.kt backend.native/tests/link/lib/foo2.kt backend.native/tests/teamcity-test.property
63 lines
1.8 KiB
Kotlin
63 lines
1.8 KiB
Kotlin
plugins {
|
|
kotlin("multiplatform")
|
|
`maven-publish`
|
|
}
|
|
|
|
group = "org.jetbrains.kotlin.sample.native"
|
|
version = "1.0"
|
|
|
|
val localRepo = rootProject.file("build/.m2-local")
|
|
|
|
publishing {
|
|
repositories {
|
|
maven("file://$localRepo")
|
|
}
|
|
}
|
|
|
|
val cleanLocalRepo by tasks.creating(Delete::class) {
|
|
delete(localRepo)
|
|
}
|
|
|
|
val mingwPath = File(System.getenv("MINGW64_DIR") ?: "C:/msys64/mingw64")
|
|
|
|
kotlin {
|
|
|
|
// Determine host preset.
|
|
val hostOs = System.getProperty("os.name")
|
|
|
|
// Create target for the host platform.
|
|
val hostTarget = when {
|
|
hostOs == "Mac OS X" -> macosX64("libcurl")
|
|
hostOs == "Linux" -> linuxX64("libcurl")
|
|
hostOs.startsWith("Windows") -> mingwX64("libcurl")
|
|
else -> throw GradleException("Host OS '$hostOs' is not supported in Kotlin/Native $project.")
|
|
}
|
|
|
|
hostTarget.apply {
|
|
compilations["main"].cinterops {
|
|
val libcurl by creating {
|
|
when (preset) {
|
|
presets["macosX64"] -> includeDirs.headerFilterOnly("/opt/local/include", "/usr/local/include")
|
|
presets["linuxX64"] -> includeDirs.headerFilterOnly("/usr/include", "/usr/include/x86_64-linux-gnu")
|
|
presets["mingwX64"] -> includeDirs.headerFilterOnly(mingwPath.resolve("include"))
|
|
}
|
|
}
|
|
}
|
|
|
|
mavenPublication {
|
|
pom {
|
|
withXml {
|
|
val root = asNode()
|
|
root.appendNode("name", "libcurl interop library")
|
|
root.appendNode("description", "A library providing interoperability with host libcurl")
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
// Enable experimental stdlib API used by the sample.
|
|
sourceSets.all {
|
|
languageSettings.useExperimentalAnnotation("kotlin.ExperimentalStdlibApi")
|
|
}
|
|
}
|