visionforge/plotly/examples/native-demo/build.gradle.kts

24 lines
359 B
Plaintext
Raw Permalink Normal View History

2024-06-04 22:47:56 +03:00
plugins {
kotlin("multiplatform")
}
repositories {
mavenCentral()
maven("https://repo.kotlin.link")
}
kotlin {
linuxX64{
binaries{
executable()
}
}
sourceSets{
commonMain {
dependencies {
implementation(project(":plotly:plotlykt-core"))
}
}
}
2024-06-05 09:49:29 +03:00
}