-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle.kts
178 lines (154 loc) · 4.79 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
@file:Suppress("UNUSED_VARIABLE")
import org.jetbrains.kotlin.gradle.plugin.mpp.KotlinNativeTarget
import org.jetbrains.kotlin.gradle.tasks.KotlinNativeLink
import org.jetbrains.kotlin.konan.target.HostManager
plugins {
id("idea")
kotlin("multiplatform") version "1.3.61"
}
allprojects {
apply(plugin = "idea")
idea {
module {
isDownloadJavadoc = false
isDownloadSources = true
}
}
repositories {
jcenter()
}
}
val ideaActive = System.getProperty("idea.active") == "true"
kotlin {
// TODO Kotlin has support for many more targets but we do not know how to
// test them. Examples: wasm, linux other than x64, mingw x86
js {
browser()
nodejs {
testTask {
debug = false
}
}
compilations.all {
kotlinOptions {
moduleKind = "umd"
sourceMap = true
}
}
}
jvm {
compilations.all {
kotlinOptions {
System.getenv("KOTLIN_JAVA_HOME")?.let { jdkHome = it }
}
}
}
if (ideaActive) {
when {
HostManager.hostIsMac -> macosX64("native")
HostManager.hostIsLinux -> linuxX64("native")
HostManager.hostIsMingw -> mingwX64("native")
else -> error("Cannot prepare native target for unknown host: ${HostManager.hostName}")
}
}
macosX64()
ios()
tvos()
watchos()
linuxX64()
mingwX64()
targets.all {
compilations.all {
kotlinOptions {
allWarningsAsErrors = true
}
}
}
sourceSets {
all {
languageSettings.progressiveMode = true
}
val commonMain by getting {
dependencies {
implementation(kotlin("stdlib-common"))
}
}
val commonTest by getting {
dependencies {
implementation(kotlin("test-common"))
implementation(kotlin("test-annotations-common"))
}
}
val jvmMain by getting {
dependencies {
implementation(kotlin("stdlib"))
}
}
val jvmTest by getting {
dependencies {
implementation(kotlin("test"))
implementation(kotlin("test-junit"))
}
}
val nonJvmMain by creating {
dependsOn(commonMain)
}
val nonJvmTest by creating {
dependsOn(commonTest)
}
val jsMain by getting {
dependsOn(nonJvmMain)
dependencies {
implementation(kotlin("stdlib-js"))
}
}
val jsTest by getting {
dependsOn(nonJvmTest)
dependencies {
implementation(kotlin("test-js"))
}
}
val nativeMain = maybeCreate("nativeMain")
nativeMain.dependsOn(nonJvmMain)
val nativeTest = maybeCreate("nativeTest")
nativeTest.dependsOn(nonJvmTest)
targets.forEach {
if (it is KotlinNativeTarget) {
getByName("${it.name}Main") {
dependsOn(if (ideaActive) nonJvmMain else nativeMain)
}
getByName("${it.name}Test") {
dependsOn(if (ideaActive) nonJvmTest else nativeTest)
}
}
}
}
}
tasks {
val jvmTest by getting(Test::class) {
System.getenv("JAVA_HOME")?.let { executable = "$it/bin/java" }
}
if (HostManager.hostIsMac) {
val linkDebugTestIosX64 by getting(KotlinNativeLink::class)
val iosTest by registering(Exec::class) {
group = "verification"
description = "Run iOS tests with a simulator."
dependsOn(linkDebugTestIosX64)
commandLine("xcrun", "simctl", "spawn", "--standalone", "iPhone 8", linkDebugTestIosX64.outputFile.get())
}
val linkDebugTestTvosX64 by getting(KotlinNativeLink::class)
val tvosTest by registering(Exec::class) {
group = "verification"
description = "Run tvOS tests with a simulator."
dependsOn(linkDebugTestTvosX64)
commandLine("xcrun", "simctl", "spawn", "--standalone", "Apple TV", linkDebugTestTvosX64.outputFile.get())
}
val linkDebugTestWatchosX86 by getting(KotlinNativeLink::class)
val watchosTest by registering(Exec::class) {
group = "verification"
description = "Run watchOS tests with a simulator."
dependsOn(linkDebugTestWatchosX86)
commandLine("xcrun", "simctl", "spawn", "--standalone", "Apple Watch Series 4 - 40mm", linkDebugTestWatchosX86.outputFile.get())
}
}
}