-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.gradle.kts
102 lines (89 loc) · 2.01 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
plugins {
id("org.jetbrains.kotlin.multiplatform")
}
apply {
plugin(pw.binom.plugins.BinomPublishPlugin::class.java)
}
kotlin {
jvm {
compilations.all {
kotlinOptions {
// jvmTarget = "11"
}
}
}
linuxX64 { // Use your target instead.
binaries {
staticLib()
}
}
linuxArm32Hfp {
binaries {
staticLib()
}
}
// linuxArm64 {
// binaries {
// staticLib()
// }
// }
mingwX64 { // Use your target instead.
binaries {
staticLib()
}
}
mingwX86 { // Use your target instead.
binaries {
staticLib()
}
}
macosX64 {
binaries {
framework()
}
}
sourceSets {
val commonMain by getting {
dependencies {
api(project(":core"))
api(project(":network"))
api(project(":ssl"))
api(project(":http"))
}
}
val linuxX64Main by getting {
dependsOn(commonMain)
}
// val linuxArm64Main by getting {
// dependsOn(commonMain)
// }
val linuxArm32HfpMain by getting {
dependsOn(commonMain)
}
val mingwX64Main by getting {
dependsOn(commonMain)
}
val mingwX86Main by getting {
dependsOn(commonMain)
}
val macosX64Main by getting {
dependsOn(commonMain)
}
val commonTest by getting {
dependencies {
api(kotlin("test-common"))
api(kotlin("test-annotations-common"))
}
}
val jvmTest by getting {
dependsOn(commonTest)
dependencies {
api(kotlin("test-junit"))
}
}
val linuxX64Test by getting {
dependsOn(commonTest)
}
}
}
apply<pw.binom.plugins.DocsPlugin>()