2021-03-18 19:11:45 +01:00
|
|
|
/*
|
|
|
|
* * Copyright (c) 2021 Shabinder Singh
|
|
|
|
* * This program is free software: you can redistribute it and/or modify
|
|
|
|
* * it under the terms of the GNU General Public License as published by
|
|
|
|
* * the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* * (at your option) any later version.
|
|
|
|
* *
|
|
|
|
* * This program is distributed in the hope that it will be useful,
|
|
|
|
* * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* * GNU General Public License for more details.
|
|
|
|
* *
|
|
|
|
* * You should have received a copy of the GNU General Public License
|
|
|
|
* * along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2021-01-26 13:54:28 +01:00
|
|
|
plugins {
|
|
|
|
id("android-setup")
|
2021-05-20 18:07:54 +02:00
|
|
|
id("multiplatform-setup")
|
|
|
|
id("multiplatform-setup-test")
|
2021-01-26 13:54:28 +01:00
|
|
|
id("com.squareup.sqldelight")
|
|
|
|
}
|
|
|
|
|
|
|
|
sqldelight {
|
2021-01-31 12:33:41 +01:00
|
|
|
database("Database") {
|
2021-01-26 13:54:28 +01:00
|
|
|
packageName = "com.shabinder.database"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
kotlin {
|
|
|
|
sourceSets {
|
|
|
|
commonMain {
|
|
|
|
dependencies {
|
2021-01-31 12:33:41 +01:00
|
|
|
implementation(project(":common:data-models"))
|
2021-05-01 20:00:59 +02:00
|
|
|
|
2021-01-29 18:53:17 +01:00
|
|
|
// SQL Delight
|
2021-09-30 19:16:43 +02:00
|
|
|
with(deps.sqldelight) {
|
|
|
|
implementation(runtime)
|
|
|
|
api(coroutines.extension)
|
|
|
|
}
|
2021-01-26 13:54:28 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
androidMain {
|
|
|
|
dependencies {
|
2021-09-30 19:16:43 +02:00
|
|
|
implementation(deps.sqldelight.android.driver)
|
2021-01-26 13:54:28 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
desktopMain {
|
|
|
|
dependencies {
|
2021-09-30 19:16:43 +02:00
|
|
|
with(deps) {
|
|
|
|
implementation(sqldelight.driver)
|
|
|
|
implementation(sqlite.jdbc.driver)
|
|
|
|
}
|
2021-01-26 13:54:28 +01:00
|
|
|
}
|
|
|
|
}
|
2021-05-01 20:00:59 +02:00
|
|
|
|
2021-05-18 16:32:33 +02:00
|
|
|
if (HostOS.isMac) {
|
2021-04-28 18:04:17 +02:00
|
|
|
val iosMain by getting {
|
|
|
|
dependencies {
|
2021-09-30 19:16:43 +02:00
|
|
|
implementation(deps.sqldelight.native.driver)
|
2021-04-28 18:04:17 +02:00
|
|
|
}
|
2021-01-26 13:54:28 +01:00
|
|
|
}
|
2021-04-26 19:59:49 +02:00
|
|
|
}
|
2021-01-26 13:54:28 +01:00
|
|
|
}
|
|
|
|
}
|