800 lines
24 KiB
Plaintext
Raw Normal View History

/*
* Copyright 2019 Ugljesa Jovanovic
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*/
@file:Suppress("UnstableApiUsage")
import org.gradle.api.tasks.testing.logging.TestExceptionFormat
import org.jetbrains.kotlin.gradle.ExperimentalWasmDsl
import org.jetbrains.kotlin.gradle.plugin.mpp.KotlinNativeTarget
import org.jetbrains.kotlin.gradle.targets.js.testing.KotlinJsTest
import org.jetbrains.kotlin.gradle.targets.native.tasks.KotlinNativeTest
plugins {
kotlin(PluginsDeps.multiplatform)
id(PluginsDeps.mavenPublish)
id(PluginsDeps.signing)
id(PluginsDeps.taskTree) version Versions.taskTreePlugin
id(PluginsDeps.androidLibrary)
2021-01-09 23:42:30 +01:00
id(PluginsDeps.dokka)
}
repositories {
mavenCentral()
mavenLocal()
maven("https://gitea.sergeych.net/api/packages/YoungBlood/maven")
}
group = ReleaseInfo.group
2020-10-19 22:27:38 +02:00
version = ReleaseInfo.bindingsVersion
val ideaActive = isInIdea()
println("Idea active: $ideaActive")
android {
compileSdk = AndroidPluginConfiguration.sdkVersion
defaultConfig {
minSdk = AndroidPluginConfiguration.minVersion
targetSdk = AndroidPluginConfiguration.sdkVersion
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
getByName("release") {
isMinifyEnabled = false
}
getByName("debug") {
isMinifyEnabled = false
}
}
2021-02-21 11:40:16 +01:00
sourceSets.getByName("main") {
// jniLibs.srcDir("src/androidMain/libs")
2021-02-21 11:40:16 +01:00
}
2023-08-17 11:45:23 +02:00
lint {
abortOnError = false
}
}
kotlin {
val hostOsName = getHostOsName()
androidTarget() {
2021-02-24 13:01:02 +01:00
publishLibraryVariants("release", "debug")
}
jvm()
val projectRef = project
runningOnLinuxx86_64 {
println("Configuring Linux X86-64 targets")
js {
browser {
testTask {
useKarma {
2021-02-09 16:13:08 +01:00
useChromeHeadless()
}
}
}
nodejs {
testTask {
useMocha() {
timeout = "10s"
}
}
}
}
@OptIn(ExperimentalWasmDsl::class)
wasmJs {
browser {
testTask {
useKarma {
useChrome()
}
}
}
}
linuxX64() {
compilations.getByName("main") {
val libsodiumCinterop by cinterops.creating {
defFile(projectRef.file("src/nativeInterop/cinterop/libsodium.def"))
compilerOpts.add("-I${projectRef.rootDir}/sodiumWrapper/static-linux-x86-64/include/")
}
kotlinOptions.freeCompilerArgs = listOf(
"-include-binary", "${projectRef.rootDir}/sodiumWrapper/static-linux-x86-64/lib/libsodium.a"
)
}
binaries {
staticLib {
}
}
}
if (ideaActive.not()) {
linuxArm64() {
binaries {
staticLib {
}
}
}
}
}
runningOnLinuxArm64 {
println("Configuring Linux Arm 64 targets")
}
runningOnLinuxArm32 {
println("Configuring Linux Arm 32 targets")
}
2020-10-20 00:22:22 +02:00
println("Configuring macos targets")
2021-09-22 22:35:25 +02:00
2020-10-20 00:22:22 +02:00
iosX64() {
binaries {
framework {
optimized = true
}
}
2020-10-20 00:22:22 +02:00
}
iosArm64() {
binaries {
framework {
optimized = true
}
}
2020-10-20 00:22:22 +02:00
}
2021-09-22 22:35:25 +02:00
iosSimulatorArm64() {
binaries {
framework {
optimized = true
}
}
}
2020-10-20 00:22:22 +02:00
macosX64() {
binaries {
framework {
optimized = true
}
2020-10-20 00:22:22 +02:00
}
2021-09-22 22:35:25 +02:00
}
macosArm64() {
binaries {
framework {
optimized = true
}
}
2020-10-20 00:22:22 +02:00
}
2021-09-22 22:35:25 +02:00
2020-10-20 00:22:22 +02:00
tvosX64() {
binaries {
framework {
optimized = true
}
}
2020-10-20 00:22:22 +02:00
}
tvosArm64() {
binaries {
framework {
optimized = true
}
}
2020-10-20 00:22:22 +02:00
}
2021-09-22 22:35:25 +02:00
tvosSimulatorArm64() {
binaries {
framework {
optimized = true
}
}
}
2020-10-20 00:22:22 +02:00
watchosArm64() {
binaries {
framework {
optimized = true
}
}
2020-10-20 00:22:22 +02:00
}
watchosArm32() {
binaries {
framework {
optimized = true
}
}
2020-10-20 00:22:22 +02:00
}
2021-09-22 22:35:25 +02:00
watchosSimulatorArm64() {
binaries {
framework {
optimized = true
}
}
}
println("Configuring Mingw targets")
mingwX64() {
if (hostOsName == "windows") {
2022-01-15 21:59:14 +01:00
binaries {
staticLib {
optimized = true
}
}
2022-01-15 21:59:14 +01:00
compilations.getByName("main") {
val libsodiumCinterop by cinterops.creating {
defFile(projectRef.file("src/nativeInterop/cinterop/libsodium.def"))
compilerOpts.add("-I${projectRef.rootDir}/sodiumWrapper/static-mingw-x86-64/include")
}
kotlinOptions.freeCompilerArgs = listOf(
"-include-binary", "${projectRef.rootDir}/sodiumWrapper/static-mingw-x86-64/lib/libsodium.a"
)
}
} else {
// Disable cross compilation until https://youtrack.jetbrains.com/issue/KT-30498 is supported
compilations.all {
cinterops.all {
project.tasks[interopProcessingTaskName].enabled = false
}
compileKotlinTask.enabled = false
}
binaries.all {
linkTask.enabled = false
}
mavenPublication(
Action {
tasks.withType<AbstractPublishToMaven> {
onlyIf {
publication != this@Action
}
}
tasks.withType<GenerateModuleMetadata>() {
onlyIf {
publication.get() != this@Action
}
}
}
)
}
}
2020-10-20 00:22:22 +02:00
println(targets.names)
sourceSets {
val commonMain by getting {
dependencies {
implementation(kotlin(Deps.Common.stdLib))
}
}
val commonTest by getting {
dependencies {
implementation(kotlin(Deps.Common.test))
implementation(kotlin(Deps.Common.testAnnotation))
implementation(Deps.Common.coroutines)
implementation(Deps.Common.coroutinesTest)
implementation(kotlin("test"))
}
}
val nativeDependencies = independentDependencyBlock {
}
val nativeMain by creating {
dependsOn(commonMain)
isRunningInIdea {
kotlin.setSrcDirs(emptySet<String>())
}
dependencies {
nativeDependencies(this)
}
}
val nativeTest by creating {
dependsOn(commonTest)
isRunningInIdea {
kotlin.setSrcDirs(emptySet<String>())
}
dependencies {
}
}
//Set up shared source sets
//linux, linuxArm32Hfp, linuxArm64
val linux64Bit = setOf(
"linuxX64"
)
val linuxArm64Bit = setOf(
if (ideaActive.not()) {
"linuxArm64"
} else {
""
}
)
//iosArm64, iosX64, macosX64, metadata, tvosArm64, tvosX64, watchosArm32, watchosArm64
val macos64Bit = setOf(
2021-09-22 22:35:25 +02:00
"macosX64", "macosArm64"
)
val iosArm = setOf(
"iosArm64",
)
val iosSimulator = setOf(
2021-09-22 22:35:25 +02:00
"iosX64", "iosSimulatorArm64"
)
val mingw64Bit = setOf(
"mingwX64"
)
val tvosArm = setOf(
"tvosArm64"
)
val tvosSimulator = setOf(
2021-09-22 22:35:25 +02:00
"tvosX64", "tvosSimulatorArm64"
)
val watchosArm = setOf(
"watchosArm64", "watchosArm32"
)
val watchosSimulator = setOf(
"watchosSimulatorArm64"
)
targets.withType<KotlinNativeTarget> {
println("Target $name")
compilations.getByName("main") {
if (linux64Bit.contains(this@withType.name)) {
defaultSourceSet.dependsOn(nativeMain)
}
if (linuxArm64Bit.contains(this@withType.name)) {
defaultSourceSet.dependsOn(
createWorkaroundNativeMainSourceSet(
this@withType.name,
nativeDependencies
)
)
this@withType.compilations.getByName("main") {
val libsodiumCinterop by cinterops.creating {
defFile(projectRef.file("src/nativeInterop/cinterop/libsodium.def"))
compilerOpts.add("-I${projectRef.rootDir}/sodiumWrapper/static-arm64/include/")
}
kotlinOptions.freeCompilerArgs = listOf(
"-include-binary", "${projectRef.rootDir}/sodiumWrapper/static-arm64/lib/libsodium.a"
)
}
}
if (macos64Bit.contains(this@withType.name)) {
2022-08-29 09:31:39 +02:00
defaultSourceSet.dependsOn(
createWorkaroundNativeMainSourceSet(
this@withType.name,
nativeDependencies
)
)
2021-09-22 22:35:25 +02:00
println("Setting macos cinterop for $this")
val libsodiumCinterop by cinterops.creating {
defFile(projectRef.file("src/nativeInterop/cinterop/libsodium.def"))
compilerOpts.add("-I${projectRef.rootDir}/sodiumWrapper/static-macos/include")
}
kotlinOptions.freeCompilerArgs = listOf(
"-include-binary", "${projectRef.rootDir}/sodiumWrapper/static-macos/lib/libsodium.a"
)
}
//All ioses share the same static library
if (iosArm.contains(this@withType.name)) {
2022-08-29 09:31:39 +02:00
defaultSourceSet.dependsOn(
createWorkaroundNativeMainSourceSet(
this@withType.name,
nativeDependencies
)
)
println("Setting ios cinterop for $this")
val libsodiumCinterop by cinterops.creating {
defFile(projectRef.file("src/nativeInterop/cinterop/libsodium.def"))
compilerOpts.add("-I${projectRef.rootDir}/sodiumWrapper/static-ios/include")
}
kotlinOptions.freeCompilerArgs = listOf(
"-include-binary", "${projectRef.rootDir}/sodiumWrapper/static-ios/lib/libsodium.a"
)
}
if (iosSimulator.contains(this@withType.name)) {
2022-08-29 09:31:39 +02:00
defaultSourceSet.dependsOn(
createWorkaroundNativeMainSourceSet(
this@withType.name,
nativeDependencies
)
)
println("Setting ios cinterop for $this")
val libsodiumCinterop by cinterops.creating {
defFile(projectRef.file("src/nativeInterop/cinterop/libsodium.def"))
compilerOpts.add("-I${projectRef.rootDir}/sodiumWrapper/static-ios-simulators/include")
}
kotlinOptions.freeCompilerArgs = listOf(
"-include-binary", "${projectRef.rootDir}/sodiumWrapper/static-ios-simulators/lib/libsodium.a"
)
}
if (tvosArm.contains(this@withType.name)) {
2022-08-29 09:31:39 +02:00
defaultSourceSet.dependsOn(
createWorkaroundNativeMainSourceSet(
this@withType.name,
nativeDependencies
)
)
println("Setting ios cinterop for $this")
val libsodiumCinterop by cinterops.creating {
defFile(projectRef.file("src/nativeInterop/cinterop/libsodium.def"))
compilerOpts.add("-I${projectRef.rootDir}/sodiumWrapper/static-tvos/include")
}
kotlinOptions.freeCompilerArgs = listOf(
"-include-binary", "${projectRef.rootDir}/sodiumWrapper/static-tvos/lib/libsodium.a"
)
}
if (tvosSimulator.contains(this@withType.name)) {
2022-08-29 09:31:39 +02:00
defaultSourceSet.dependsOn(
createWorkaroundNativeMainSourceSet(
this@withType.name,
nativeDependencies
)
)
println("Setting ios cinterop for $this")
val libsodiumCinterop by cinterops.creating {
defFile(projectRef.file("src/nativeInterop/cinterop/libsodium.def"))
compilerOpts.add("-I${projectRef.rootDir}/sodiumWrapper/static-tvos-simulators/include")
}
kotlinOptions.freeCompilerArgs = listOf(
"-include-binary", "${projectRef.rootDir}/sodiumWrapper/static-tvos-simulators/lib/libsodium.a"
)
}
if (watchosArm.contains(this@withType.name)) {
2022-08-29 09:31:39 +02:00
defaultSourceSet.dependsOn(
createWorkaroundNativeMainSourceSet(
this@withType.name,
nativeDependencies
)
)
println("Setting ios cinterop for $this")
val libsodiumCinterop by cinterops.creating {
defFile(projectRef.file("src/nativeInterop/cinterop/libsodium.def"))
compilerOpts.add("-I${projectRef.rootDir}/sodiumWrapper/static-watchos/include")
}
kotlinOptions.freeCompilerArgs = listOf(
"-include-binary", "${projectRef.rootDir}/sodiumWrapper/static-watchos/lib/libsodium.a"
)
}
if (watchosSimulator.contains(this@withType.name)) {
2022-08-29 09:31:39 +02:00
defaultSourceSet.dependsOn(
createWorkaroundNativeMainSourceSet(
this@withType.name,
nativeDependencies
)
)
println("Setting ios cinterop for $this")
val libsodiumCinterop by cinterops.creating {
defFile(projectRef.file("src/nativeInterop/cinterop/libsodium.def"))
compilerOpts.add("-I${projectRef.rootDir}/sodiumWrapper/static-watchos-simulators/include")
}
kotlinOptions.freeCompilerArgs = listOf(
2022-08-29 09:31:39 +02:00
"-include-binary",
"${projectRef.rootDir}/sodiumWrapper/static-watchos-simulators/lib/libsodium.a"
)
}
}
compilations.getByName("test") {
println("Setting native test dep for $this@withType.name")
defaultSourceSet.dependsOn(nativeTest)
}
}
val androidMain by getting {
isNotRunningInIdea {
kotlin.srcDirs("src/androidMain", "src/androidSpecific", "src/jvmMain/kotlin")
}
isRunningInIdea {
kotlin.srcDirs("src/androidSpecific", "src/jvmMain/kotlin")
}
dependencies {
implementation("net.java.dev.jna:jna:5.12.1@aar")
implementation(Deps.Jvm.resourceLoader) {
exclude("net.java.dev.jna", "jna")
}
}
}
2023-08-17 11:45:23 +02:00
val androidUnitTest by getting {
dependencies {
}
}
val jvmMain by getting {
kotlin.srcDirs("src/jvmSpecific", "src/jvmMain/kotlin")
dependencies {
implementation(kotlin(Deps.Jvm.stdLib))
implementation(Deps.Jvm.resourceLoader)
implementation(Deps.Jvm.Delegated.jna)
implementation("org.slf4j:slf4j-api:1.7.30")
}
}
val jvmTest by getting {
dependencies {
implementation(kotlin(Deps.Jvm.test))
implementation(kotlin(Deps.Jvm.testJUnit))
implementation(kotlin(Deps.Jvm.reflection))
}
}
runningOnLinuxx86_64 {
println("Configuring Linux 64 Bit source sets")
val jsMain by getting {
dependencies {
implementation(kotlin(Deps.Js.stdLib))
implementation(npm(Deps.Js.Npm.libsodiumWrappers.first, Deps.Js.Npm.libsodiumWrappers.second))
}
}
val jsTest by getting {
dependencies {
implementation(kotlin(Deps.Js.test))
implementation(npm(Deps.Js.Npm.libsodiumWrappers.first, Deps.Js.Npm.libsodiumWrappers.second))
}
}
val wasmJsMain by getting {
dependencies {
implementation(npm(Deps.wasmJs.Npm.libsodiumWrappers.first, Deps.wasmJs.Npm.libsodiumWrappers.second))
}
}
val wasmJsTest by getting {
dependencies {
implementation(npm(Deps.wasmJs.Npm.libsodiumWrappers.first, Deps.wasmJs.Npm.libsodiumWrappers.second))
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-test:1.9.0")
}
}
val linuxX64Main by getting {
isRunningInIdea {
kotlin.srcDir("src/nativeMain/kotlin")
}
}
val linuxX64Test by getting {
dependsOn(nativeTest)
isRunningInIdea {
kotlin.srcDir("src/nativeTest/kotlin")
}
}
}
runningOnMacos {
println("Configuring Macos source sets")
val macosX64Main by getting {
dependsOn(nativeMain)
if (ideaActive) {
kotlin.srcDir("src/nativeMain/kotlin")
}
}
val macosX64Test by getting {
dependsOn(nativeTest)
if (ideaActive) {
kotlin.srcDir("src/nativeTest/kotlin")
}
}
val tvosX64Main by getting {
dependsOn(commonMain)
}
val tvosArm64Main by getting {
dependsOn(commonMain)
}
val watchosArm64Main by getting {
dependsOn(commonMain)
}
val watchosArm32Main by getting {
dependsOn(commonMain)
}
}
if (hostOsName == "windows") {
val mingwX64Main by getting {
dependsOn(nativeMain)
if (ideaActive) {
kotlin.srcDir("src/nativeMain/kotlin")
}
}
val mingwX64Test by getting {
dependsOn(nativeTest)
if (ideaActive) {
kotlin.srcDir("src/nativeTest/kotlin")
}
}
}
all {
languageSettings.enableLanguageFeature("InlineClasses")
languageSettings.optIn("kotlin.ExperimentalUnsignedTypes")
languageSettings.optIn("kotlin.ExperimentalStdlibApi")
2023-08-17 11:45:23 +02:00
languageSettings.optIn("kotlinx.cinterop.ExperimentalForeignApi")
}
}
}
tasks.whenTaskAdded {
2022-08-29 09:31:39 +02:00
if ("DebugUnitTest" in name || "ReleaseUnitTest" in name) {
enabled =
false // https://youtrack.jetbrains.com/issue/KT-34662 otherwise common tests fail, because we require native android libs to be loaded
}
}
tasks {
2021-01-10 23:25:35 +01:00
create<Jar>("javadocJar") {
dependsOn(dokkaHtml)
archiveClassifier.set("javadoc")
from(dokkaHtml.get().outputDirectory)
}
dokkaHtml {
println("Dokka !")
dokkaSourceSets {
}
2022-08-29 09:31:39 +02:00
}
if (getHostOsName() == "linux" && getHostArchitecture() == "x86-64") {
val jvmTest by getting(Test::class) {
testLogging {
events("PASSED", "FAILED", "SKIPPED")
exceptionFormat = TestExceptionFormat.FULL
showStandardStreams = true
showStackTraces = true
}
}
val linuxX64Test by getting(KotlinNativeTest::class) {
testLogging {
events("PASSED", "FAILED", "SKIPPED")
2021-01-05 10:46:43 +01:00
exceptionFormat = TestExceptionFormat.FULL
showStandardStreams = true
2021-01-05 10:46:43 +01:00
showStackTraces = true
}
}
val jsNodeTest by getting(KotlinJsTest::class) {
testLogging {
events("PASSED", "FAILED", "SKIPPED")
2021-01-05 10:46:43 +01:00
exceptionFormat = TestExceptionFormat.FULL
showStandardStreams = true
showStackTraces = true
}
}
// val legacyjsNodeTest by getting(KotlinJsTest::class) {
//
// testLogging {
// events("PASSED", "FAILED", "SKIPPED")
// showStandardStreams = true
// }
// }
// val wasmJsBrowserTest by getting(KotlinJsTest::class) {
// testLogging {
// events("PASSED", "FAILED", "SKIPPED")
// showStandardStreams = true
// }
// }
2024-11-21 14:12:51 +03:00
val jsBrowserTest by getting(KotlinJsTest::class) {
testLogging {
events("PASSED", "FAILED", "SKIPPED")
showStandardStreams = true
}
}
// val jsLegacyBrowserTest by getting(KotlinJsTest::class) {
// testLogging {
// events("PASSED", "FAILED", "SKIPPED")
// showStandardStreams = true
// }
// }
//
// val jsIrBrowserTest by getting(KotlinJsTest::class) {
// testLogging {
// events("PASSED", "FAILED", "SKIPPED")
// showStandardStreams = true
// }
// }
}
if (getHostOsName() == "windows") {
val mingwX64Test by getting(KotlinNativeTest::class) {
testLogging {
events("PASSED", "FAILED", "SKIPPED")
showStandardStreams = true
}
}
}
}
allprojects {
tasks.withType(JavaCompile::class) {
sourceCompatibility = "1.8"
targetCompatibility = "1.8"
}
}
signing {
isRequired = false
sign(publishing.publications)
}
publishing {
2025-02-01 05:49:07 +03:00
val mavenToken by lazy {
2025-02-02 18:58:02 +03:00
("token " + File("${System.getProperty("user.home")}/.gitea_token").readText())
2025-02-01 05:49:07 +03:00
}
repositories {
maven {
credentials(HttpHeaderCredentials::class) {
name = "Authorization"
value = mavenToken
}
url = uri("https://gitea.sergeych.net/api/packages/YoungBlood/maven")
authentication {
create("Authorization", HttpHeaderAuthentication::class)
}
}
}
}