Files
orx/orx-text-writer/build.gradle.kts
Edwin Jakobs 46744025a8 [orx-text-writer] Add horizontal and vertical text alignment features
Introduced horizontalAlign and verticalAlign properties in WriteStyle and TextWriter, enabling precise text alignment within bounding boxes. Enhanced text token management to support alignment calculations and adjusted demos to showcase the new capabilities.
2025-02-26 12:27:50 +01:00

23 lines
596 B
Plaintext

plugins {
org.openrndr.extra.convention.`kotlin-multiplatform`
alias(libs.plugins.kotest.multiplatform)
}
kotlin {
sourceSets {
val commonMain by getting {
dependencies {
implementation(libs.openrndr.shape)
implementation(libs.openrndr.draw)
implementation(libs.openrndr.application)
}
}
val jvmDemo by getting {
dependencies {
implementation(project(":orx-text-writer"))
implementation(project(":orx-shapes"))
}
}
}
}