secp256k1-kmp/build.gradle.kts

254 lines
8.9 KiB
Plaintext
Raw Normal View History

2020-06-26 13:48:50 +02:00
plugins {
kotlin("multiplatform") version "1.4-M2-mt"
2020-06-26 20:50:32 +02:00
id("com.android.library") version "4.0.0"
2020-06-29 12:05:04 +02:00
`maven-publish`
2020-06-26 13:48:50 +02:00
}
2020-06-29 12:05:04 +02:00
group = "fr.acinq.secp256k1"
version = "0.1.0-1.4-M2"
2020-06-26 13:48:50 +02:00
repositories {
jcenter()
2020-06-26 20:50:32 +02:00
google()
2020-06-26 13:48:50 +02:00
maven(url = "https://dl.bintray.com/kotlin/kotlin-eap")
}
val currentOs = org.gradle.internal.os.OperatingSystem.current()
kotlin {
explicitApi()
2020-06-26 17:10:48 +02:00
val commonMain by sourceSets.getting {
dependencies {
implementation(kotlin("stdlib-common"))
}
}
val commonTest by sourceSets.getting {
dependencies {
implementation(kotlin("test-common"))
implementation(kotlin("test-annotations-common"))
}
}
2020-06-26 20:50:32 +02:00
val jvmAndAndroidMain by sourceSets.creating {
dependsOn(commonMain)
dependencies {
implementation(kotlin("stdlib-jdk8"))
}
}
2020-06-26 13:48:50 +02:00
jvm {
compilations.all {
kotlinOptions.jvmTarget = "1.8"
}
2020-06-26 17:10:48 +02:00
(tasks[compilations["main"].processResourcesTaskName] as ProcessResources).apply{
dependsOn("copyJni")
from(buildDir.resolve("jniResources"))
2020-06-26 13:48:50 +02:00
}
2020-06-26 20:50:32 +02:00
compilations["main"].defaultSourceSet.dependsOn(jvmAndAndroidMain)
2020-06-26 17:10:48 +02:00
compilations["test"].dependencies {
implementation(kotlin("test-junit"))
2020-06-26 13:48:50 +02:00
}
2020-06-26 17:10:48 +02:00
}
2020-06-26 20:50:32 +02:00
android {
compilations.all {
kotlinOptions.jvmTarget = "1.8"
}
sourceSets["androidMain"].dependsOn(jvmAndAndroidMain)
sourceSets["androidTest"].dependencies {
implementation(kotlin("test-junit"))
implementation("androidx.test.ext:junit:1.1.1")
implementation("androidx.test.espresso:espresso-core:3.2.0")
}
}
2020-06-26 17:10:48 +02:00
fun org.jetbrains.kotlin.gradle.plugin.mpp.KotlinNativeTarget.secp256k1CInterop() {
compilations["main"].cinterops {
val libsecp256k1 by creating {
includeDirs.headerFilterOnly(project.file("native/secp256k1/include/"))
tasks[interopProcessingTaskName].dependsOn("buildSecp256k1Ios")
2020-06-26 13:48:50 +02:00
}
}
}
2020-06-26 17:10:48 +02:00
val nativeMain by sourceSets.creating { dependsOn(commonMain) }
linuxX64 {
secp256k1CInterop()
// https://youtrack.jetbrains.com/issue/KT-39396
compilations["main"].kotlinOptions.freeCompilerArgs += listOf("-include-binary", "$rootDir/native/build/linux/libsecp256k1.a")
compilations["main"].defaultSourceSet.dependsOn(nativeMain)
}
ios {
secp256k1CInterop()
// https://youtrack.jetbrains.com/issue/KT-39396
compilations["main"].kotlinOptions.freeCompilerArgs += listOf("-include-binary", "$rootDir/native/build/ios/libsecp256k1.a")
compilations["main"].defaultSourceSet.dependsOn(nativeMain)
}
sourceSets.all {
languageSettings.useExperimentalAnnotation("kotlin.RequiresOptIn")
}
2020-06-26 13:48:50 +02:00
}
2020-06-26 20:50:32 +02:00
android {
defaultConfig {
compileSdkVersion(30)
minSdkVersion(21)
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
externalNativeBuild {
cmake {}
}
}
externalNativeBuild {
cmake {
setPath("src/androidMain/CMakeLists.txt")
}
}
ndkVersion = "21.3.6528147"
sourceSets["main"].manifest.srcFile("src/androidMain/AndroidManifest.xml")
}
2020-06-26 13:48:50 +02:00
val buildSecp256k1 by tasks.creating { group = "build" }
2020-06-29 11:41:34 +02:00
sealed class Cross {
abstract fun cmd(target: String, nativeDir: File): List<String>
class DockCross(val cross: String) : Cross() {
override fun cmd(target: String, nativeDir: File): List<String> = listOf("./dockcross-$cross", "bash", "-c", "TARGET=$target ./build.sh")
}
class MultiArch(val crossTriple: String) : Cross() {
override fun cmd(target: String, nativeDir: File): List<String> {
val uid = Runtime.getRuntime().exec("id -u").inputStream.use { it.reader().readText() }.trim().toInt()
return listOf(
"docker", "run", "--rm", "-v", "${nativeDir.absolutePath}:/workdir",
"-e", "CROSS_TRIPLE=$crossTriple", "-e", "TARGET=$target", "-e", "TO_UID=$uid",
"multiarch/crossbuild", "./build.sh"
)
}
}
}
fun creatingBuildSecp256k1(target: String, cross: Cross?) = tasks.creating(Exec::class) {
2020-06-26 13:48:50 +02:00
group = "build"
buildSecp256k1.dependsOn(this)
inputs.files(projectDir.resolve("native/build.sh"))
outputs.dir(projectDir.resolve("native/build/$target"))
2020-06-26 17:10:48 +02:00
workingDir = projectDir.resolve("native")
environment("TARGET", target)
2020-06-29 11:41:34 +02:00
commandLine((cross?.cmd(target, workingDir) ?: emptyList()) + "./build.sh")
2020-06-26 13:48:50 +02:00
}
2020-06-29 11:41:34 +02:00
val buildSecp256k1Darwin by creatingBuildSecp256k1("darwin", if (currentOs.isMacOsX) null else Cross.MultiArch("x86_64-apple-darwin"))
val buildSecp256k1Linux by creatingBuildSecp256k1("linux", if (currentOs.isLinux) null else Cross.DockCross("linux-x64"))
val buildSecp256k1Mingw by creatingBuildSecp256k1("mingw", if (currentOs.isWindows) null else Cross.DockCross("windows-x64"))
2020-06-26 13:48:50 +02:00
2020-06-26 20:50:32 +02:00
val copyJni by tasks.creating(Sync::class) {
dependsOn(buildSecp256k1)
from(projectDir.resolve("native/build/linux/libsecp256k1-jni.so")) { rename { "libsecp256k1-jni-linux-x86_64.so" } }
from(projectDir.resolve("native/build/darwin/libsecp256k1-jni.dylib")) { rename { "libsecp256k1-jni-darwin-x86_64.dylib" } }
from(projectDir.resolve("native/build/mingw/secp256k1-jni.dll")) { rename { "secp256k1-jni-mingw-x86_64.dll" } }
into(buildDir.resolve("jniResources/fr/acinq/secp256k1/native"))
}
2020-06-26 17:10:48 +02:00
val buildSecp256k1Ios by tasks.creating(Exec::class) {
group = "build"
buildSecp256k1.dependsOn(this)
2020-06-29 11:41:34 +02:00
onlyIf { currentOs.isMacOsX }
2020-06-26 17:10:48 +02:00
inputs.files(projectDir.resolve("native/build-ios.sh"))
outputs.dir(projectDir.resolve("native/build/ios"))
workingDir = projectDir.resolve("native")
commandLine("./build-ios.sh")
}
2020-06-29 11:41:34 +02:00
val buildSecp256k1Android by tasks.creating {
group = "build"
buildSecp256k1.dependsOn(this)
}
2020-06-26 20:50:32 +02:00
fun creatingBuildSecp256k1Android(arch: String) = tasks.creating(Exec::class) {
group = "build"
buildSecp256k1Android.dependsOn(this)
inputs.files(projectDir.resolve("native/build-android.sh"))
outputs.dir(projectDir.resolve("native/build/android/$arch"))
workingDir = projectDir.resolve("native")
val toolchain = when {
2020-06-29 11:41:34 +02:00
currentOs.isLinux -> "linux-x86_64"
2020-06-26 20:50:32 +02:00
currentOs.isMacOsX -> "darwin-x86_64"
2020-06-29 11:41:34 +02:00
currentOs.isWindows -> "windows-x86_64"
else -> error("No Android toolchain defined for this OS: $currentOs")
2020-06-26 20:50:32 +02:00
}
environment("TOOLCHAIN", toolchain)
environment("ARCH", arch)
environment("ANDROID_NDK", android.ndkDirectory)
commandLine("./build-android.sh")
2020-06-26 13:48:50 +02:00
}
2020-06-26 20:50:32 +02:00
val buildSecp256k1AndroidX86_64 by creatingBuildSecp256k1Android("x86_64")
val buildSecp256k1AndroidX86 by creatingBuildSecp256k1Android("x86")
val buildSecp256k1AndroidArm64v8a by creatingBuildSecp256k1Android("arm64-v8a")
val buildSecp256k1AndroidArmeabiv7a by creatingBuildSecp256k1Android("armeabi-v7a")
afterEvaluate {
configure(listOf("Debug", "Release").map { tasks["externalNativeBuild$it"] }) {
dependsOn(buildSecp256k1Android)
}
}
tasks["clean"].doLast {
delete(projectDir.resolve("native/build"))
}
afterEvaluate {
tasks.withType<com.android.build.gradle.tasks.factory.AndroidUnitTest>().all {
enabled = false
}
2020-06-29 12:05:04 +02:00
}
publishing {
val snapshotName: String? by project
val snapshotNumber: String? by project
val bintrayUsername: String? = (properties["bintrayUsername"] as String?) ?: System.getenv("BINTRAY_USER")
val bintrayApiKey: String? = (properties["bintrayApiKey"] as String?) ?: System.getenv("BINTRAY_APIKEY")
if (bintrayUsername == null || bintrayApiKey == null) logger.warn("Skipping bintray configuration as bintrayUsername or bintrayApiKey is not defined")
else {
val btRepo = if (snapshotNumber != null) "snapshots" else "libs"
repositories {
maven {
name = "bintray"
setUrl("https://api.bintray.com/maven/acinq/$btRepo/${project.name}/;publish=0")
credentials {
username = bintrayUsername
password = bintrayApiKey
}
}
}
}
publications.withType<MavenPublication>().configureEach {
if (snapshotName != null && snapshotNumber != null) version = "${project.version}-${snapshotName}-${snapshotNumber}"
pom {
description.set("Bitcoin's secp256k1 library ported to Kotlin/Multiplatform for JVM, Android, iOS & Linux")
url.set("https://github.com/ACINQ/secp256k1-kmp")
licenses {
name.set("Apache License v2.0")
url.set("https://www.apache.org/licenses/LICENSE-2.0")
}
issueManagement {
system.set("Github")
url.set("https://github.com/ACINQ/secp256k1-kmp/issues")
}
scm {
connection.set("https://github.com/ACINQ/secp256k1-kmp.git")
}
}
}
}