24 lines
359 B
Plaintext
24 lines
359 B
Plaintext
plugins {
|
|
kotlin("multiplatform")
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
maven("https://repo.kotlin.link")
|
|
}
|
|
|
|
kotlin {
|
|
linuxX64{
|
|
binaries{
|
|
executable()
|
|
}
|
|
}
|
|
|
|
sourceSets{
|
|
commonMain {
|
|
dependencies {
|
|
implementation(project(":plotly:plotlykt-core"))
|
|
}
|
|
}
|
|
}
|
|
} |