mirror of
https://github.com/DaanVandenBosch/phantasmal-world.git
synced 2025-04-04 06:28:28 +08:00
28 lines
602 B
Plaintext
28 lines
602 B
Plaintext
![]() |
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
|
||
|
|
||
|
plugins {
|
||
|
kotlin("jvm")
|
||
|
}
|
||
|
|
||
|
val jvmVersion: String by project.extra
|
||
|
|
||
|
tasks.withType<KotlinCompile> {
|
||
|
kotlinOptions {
|
||
|
jvmTarget = jvmVersion
|
||
|
}
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
implementation(project(":lib"))
|
||
|
implementation(project(":web:shared"))
|
||
|
}
|
||
|
|
||
|
tasks.register<JavaExec>("generateAssets") {
|
||
|
val outputFile = File(buildDir, "generatedAssets")
|
||
|
outputs.dir(outputFile)
|
||
|
|
||
|
classpath = sourceSets.main.get().runtimeClasspath
|
||
|
main = "world.phantasmal.web.assetsGeneration.Main"
|
||
|
args = listOf(outputFile.absolutePath)
|
||
|
}
|