22 lines
533 B
Kotlin
22 lines
533 B
Kotlin
/*
|
|
* This file was generated by the Gradle 'init' task.
|
|
*
|
|
* This is a general purpose Gradle build.
|
|
* Learn more about Gradle by exploring our Samples at https://docs.gradle.org/9.4.1/samples
|
|
*/
|
|
plugins {
|
|
id("base")
|
|
id("de.infolektuell.typst") version "0.8.0"
|
|
}
|
|
|
|
typst.version = "v0.14.2"
|
|
|
|
typst.sourceSets {
|
|
// Sources in src/main
|
|
val main by registering {
|
|
// The files to compile (without .typ extension) in src/main/typst
|
|
documents = listOf("kontor") // src/main/typst/document.typst
|
|
}
|
|
}
|
|
|