secp256k1-kmp/settings.gradle.kts
Salomon BRYS 6c850eb2c4
Native jni build (#5)
* Each native library is in its own jar. Got rid of cross compilation. The project is `secp256k1` and not `secp256k1-kmp`.

* Updated CI to use all 3 OS VMs

Co-authored-by: Salomon BRYS <salomon@kodein.net>
2020-07-09 14:54:34 +02:00

21 lines
373 B
Plaintext

pluginManagement {
repositories {
google()
maven("https://dl.bintray.com/kotlin/kotlin-eap")
gradlePluginPortal()
jcenter()
}
}
rootProject.name = "secp256k1"
include(
":native",
":jni",
":jni:android",
":jni:jvm",
":jni:jvm:darwin",
":jni:jvm:linux",
":jni:jvm:mingw",
":jni:jvm:all",
":tests"
)