[orx-text-writer] Add orx-text-writer

This commit is contained in:
Edwin Jakobs
2024-03-15 20:38:17 +01:00
parent 058e833330
commit 05b00d2878
19 changed files with 310 additions and 27 deletions

View File

@@ -0,0 +1,22 @@
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"))
}
}
}
}