-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle.kts
73 lines (59 loc) · 1.32 KB
/
build.gradle.kts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
plugins {
alias(libs.plugins.kotlin.multiplatform)
id("publish")
}
group = "io.github.andreypfau"
version = "0.0.8"
repositories {
mavenLocal()
mavenCentral()
}
kotlin {
jvm()
iosArm64()
iosSimulatorArm64()
iosX64()
macosArm64()
macosX64()
tvosArm64()
tvosSimulatorArm64()
tvosX64()
watchosArm32()
watchosArm64()
watchosDeviceArm64()
watchosSimulatorArm64()
watchosX64()
mingwX64()
linuxArm64()
linuxX64()
js(IR) {
nodejs()
browser()
}
@OptIn(org.jetbrains.kotlin.gradle.targets.js.dsl.ExperimentalWasmDsl::class)
wasmJs {
nodejs()
browser()
}
sourceSets {
val commonMain by getting {
dependencies {
api(libs.kotlinx.crypto.sha2)
api(libs.kotlinx.crypto.subtle)
}
}
val commonTest by getting {
dependencies {
implementation(kotlin("test"))
}
}
}
}
tasks.withType<KotlinCompile>().configureEach {
compilerOptions {
jvmTarget.set(org.jetbrains.kotlin.gradle.dsl.JvmTarget.JVM_1_8)
freeCompilerArgs.add("-opt-in=kotlin.ExperimentalUnsignedTypes")
allWarningsAsErrors.set(true)
}
}