mirror of
https://github.com/GayPizzaSpecifications/dough.git
synced 2025-08-05 06:21:32 +00:00
21 lines
227 B
Plaintext
21 lines
227 B
Plaintext
|
plugins {
|
||
|
dough_sample
|
||
|
}
|
||
|
|
||
|
kotlin {
|
||
|
js(IR) {
|
||
|
nodejs()
|
||
|
browser()
|
||
|
|
||
|
binaries.executable()
|
||
|
}
|
||
|
|
||
|
sourceSets {
|
||
|
commonMain {
|
||
|
dependencies {
|
||
|
implementation(project(":dough-core"))
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|