This repository has been archived by the owner on Jul 25, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
/
build.gradle.kts
133 lines (120 loc) · 3.47 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
import org.jetbrains.kotlin.gradle.dsl.*
import org.jetbrains.kotlin.gradle.plugin.mpp.*
import org.jetbrains.kotlin.konan.target.*
import java.io.*
plugins {
kotlin("multiplatform") version ("1.4.10") apply false
id("de.undercouch.download") version ("3.4.3") apply false
}
val stdout = ByteArrayOutputStream()
exec {
commandLine("git", "describe", "--tags")
standardOutput = stdout
}
group = "com.kgl"
version = stdout.toString().trim()
val useSingleTarget: Boolean by extra { System.getProperty("idea.active") == "true" }
val ktorIoVersion: String by extra("1.4.0")
val lwjglVersion: String by extra("3.2.2") //TODO 3.2.3 causes kgl-vulkan compile to fail
val lwjglNatives: String by extra {
when {
HostManager.hostIsLinux -> "natives-linux"
HostManager.hostIsMac -> "natives-macos"
HostManager.hostIsMingw -> "natives-windows"
else -> error("Host platform not supported")
}
}
subprojects {
group = rootProject.group
version = rootProject.version
repositories {
mavenCentral()
}
plugins.withId("org.jetbrains.kotlin.multiplatform") {
configure<KotlinMultiplatformExtension> {
sourceSets.all {
languageSettings.apply {
enableLanguageFeature("InlineClasses")
useExperimentalAnnotation("kotlin.RequiresOptIn")
useExperimentalAnnotation("kotlin.ExperimentalUnsignedTypes")
useExperimentalAnnotation("io.ktor.utils.io.core.ExperimentalIoApi")
}
}
// Hack until https://youtrack.jetbrains.com/issue/KT-30498
// Cross-Platform builds are generally disabled, but linux targets can apparently be built
// on both macOS and Windows, which breaks on both of those platforms, so we disable the
// cinterop, compile, and link tasks for any non-host native target
targets.withType<KotlinNativeTarget> {
if (konanTarget != HostManager.host) {
compilations.all {
cinterops.all { tasks[interopProcessingTaskName].enabled = false }
compileKotlinTask.enabled = false
}
binaries.all { linkTask.enabled = false }
}
}
}
}
plugins.withId("maven-publish") {
configure<PublishingExtension> {
repositories {
maven("https://maven.pkg.github.com/Dominaezzz/${rootProject.name}") {
name = "GitHubPackages"
credentials {
username = System.getenv("GITHUB_USER")
password = System.getenv("GITHUB_TOKEN")
}
}
}
publications.withType<MavenPublication> {
val vcs = "https://github.com/Dominaezzz/kgl"
pom {
name.set(project.name)
description.set(project.description)
url.set(vcs)
licenses {
license {
name.set("The Apache Software License, Version 2.0")
url.set("https://www.apache.org/licenses/LICENSE-2.0.txt")
distribution.set("repo")
}
}
developers {
developer {
id.set("Dominaezzz")
name.set("Dominic Fischer")
}
}
scm {
connection.set("$vcs.git")
developerConnection.set("$vcs.git")
url.set(vcs)
}
}
}
}
val taskPrefixes = when {
HostManager.hostIsLinux -> listOf(
"publishLinux",
"publishJs",
"publishJvm",
"publishMetadata",
"publishKotlinMultiplatform"
)
HostManager.hostIsMac -> listOf(
"publishMacos",
"publishIos"
)
HostManager.hostIsMingw -> listOf(
"publishMingw"
)
else -> error("unknown host")
}
val publishTasks = tasks.withType<PublishToMavenRepository>().matching { task ->
taskPrefixes.any { task.name.startsWith(it) }
}
tasks.register("smartPublish") {
dependsOn(publishTasks)
}
}
}