-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle.kts
89 lines (80 loc) · 2.83 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
import org.jetbrains.compose.compose
import org.jetbrains.compose.desktop.application.dsl.TargetFormat
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
plugins {
kotlin("jvm") version "1.6.10"
kotlin("plugin.serialization") version "1.6.10"
id("org.jetbrains.compose") version "1.0.1"
}
repositories {
google()
mavenCentral()
maven("https://maven.pkg.jetbrains.space/public/p/compose/dev")
}
dependencies {
implementation(compose.desktop.currentOs)
implementation("io.ktor:ktor-client-core:1.6.7")
implementation("io.ktor:ktor-client-cio:1.6.7")
implementation("io.ktor:ktor-client-serialization:1.6.7")
implementation("io.ktor:ktor-client-logging:1.6.7")
implementation("ch.qos.logback:logback-classic:1.2.10")
}
tasks.withType<KotlinCompile> {
kotlinOptions {
jvmTarget = "15"
freeCompilerArgs = listOf(
"-Xopt-in=kotlin.RequiresOptIn",
"-Xopt-in=kotlinx.coroutines.DelicateCoroutinesApi",
"-Xopt-in=androidx.compose.foundation.ExperimentalFoundationApi",
)
}
}
compose.desktop {
application {
mainClass = "MainKt"
nativeDistributions {
targetFormats(TargetFormat.Dmg, TargetFormat.Msi, TargetFormat.Deb)
packageName = "polyglot"
packageVersion = "1.0.1"
}
}
}
tasks {
val generateResourceReferences by creating(DefaultTask::class) {
println("generateResourceReferences")
val resourceDir = File(projectDir, "src/main/resources")
val outputDir = File(buildDir, "generated/main").apply(File::mkdirs)
val outputFile = File(outputDir, "R.kt").apply(File::createNewFile)
val svgFiles: List<File> = resourceDir.listFiles().orEmpty().filter { it.extension == "svg" }
fun String.snakeToLowerCamelCase(): String = buildString {
var capitalize = false
when {
it == '_' -> capitalize = true
capitalize -> {
capitalize = false
append(it.toUpperCase())
}
else -> append(it)
}
}
}
outputFile.writer().use { writer ->
writer.appendLine("object R {")
if (svgFiles.isNotEmpty()) {
writer.appendLine("\tobject drawable {")
svgFiles.forEach {
writer.appendLine("\t\tconst val ${it.nameWithoutExtension.replace("_black_24dp", "").snakeToLowerCamelCase()} = \"${it.name}\"")
}
writer.appendLine("\t}")
}
writer.appendLine('}')
}
sourceSets.main {
java.srcDir(outputDir)
}
}
build {
dependsOn(generateResourceReferences)
}
}