You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
702 B
34 lines
702 B
4 years ago
|
plugins {
|
||
|
id("multiplatform-setup")
|
||
|
id("com.squareup.sqldelight")
|
||
|
}
|
||
|
|
||
|
sqldelight {
|
||
|
database("TodoDatabase") {
|
||
|
packageName = "example.todo.database"
|
||
|
}
|
||
|
}
|
||
|
|
||
|
kotlin {
|
||
|
sourceSets {
|
||
|
commonMain {
|
||
|
dependencies {
|
||
|
implementation(Deps.Badoo.Reaktive.reaktive)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
androidMain {
|
||
|
dependencies {
|
||
|
implementation(Deps.Squareup.SQLDelight.androidDriver)
|
||
4 years ago
|
implementation(Deps.Squareup.SQLDelight.sqliteDriver)
|
||
4 years ago
|
}
|
||
|
}
|
||
|
|
||
|
desktopMain {
|
||
|
dependencies {
|
||
|
implementation(Deps.Squareup.SQLDelight.sqliteDriver)
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|