Skip to content

Commit

Permalink
fix: add gehirn build script
Browse files Browse the repository at this point in the history
  • Loading branch information
kam1sh committed Feb 3, 2024
1 parent 4a8709e commit 505f95c
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 1 deletion.
30 changes: 30 additions & 0 deletions gehirn/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
plugins {
alias(libs.plugins.kotlinMultiplatform)

alias(libs.plugins.jetbrainsCompose)
kotlin("plugin.serialization") version "1.9.21"
}

group = "org.cec.brick"
version = "1.0-SNAPSHOT"

kotlin {
jvm("desktop")
sourceSets {
val desktopMain by getting
commonMain.dependencies {
implementation(compose.runtime)
implementation(compose.foundation)
implementation(compose.material3)
implementation(compose.ui)
implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:1.6.1")
implementation("io.insert-koin:koin-core:3.5.3")
implementation("io.insert-koin:koin-compose:1.1.2")
// implementation("io.insert-koin:koin-core-coroutines:3.5.3")
}
desktopMain.dependencies {
implementation(compose.desktop.currentOs)
implementation(project(":engine"))
}
}
}
2 changes: 1 addition & 1 deletion settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@ dependencyResolutionManagement {
}
}

include(":composeApp", "engine", "gehirn")
include(":composeApp", ":engine", ":gehirn")

0 comments on commit 505f95c

Please sign in to comment.