27 lines
730 B
Plaintext
27 lines
730 B
Plaintext
plugins {
|
|
id("org.openrndr.extra.convention.kotlin-multiplatform")
|
|
alias(libs.plugins.kotlin.serialization)
|
|
}
|
|
|
|
kotlin {
|
|
sourceSets {
|
|
@Suppress("UNUSED_VARIABLE")
|
|
val commonMain by getting {
|
|
dependencies {
|
|
implementation(openrndr.application.core)
|
|
implementation(openrndr.draw)
|
|
implementation(openrndr.filter)
|
|
implementation(sharedLibs.kotlin.reflect)
|
|
implementation(sharedLibs.kotlin.serialization.core)
|
|
}
|
|
}
|
|
|
|
@Suppress("UNUSED_VARIABLE")
|
|
val jvmDemo by getting {
|
|
dependencies {
|
|
implementation(project(":orx-svg"))
|
|
}
|
|
}
|
|
}
|
|
}
|