Skip to content

Commit

Permalink
init
Browse files Browse the repository at this point in the history
  • Loading branch information
Bruce0203 committed Aug 6, 2023
1 parent 134d13f commit 4b9108b
Showing 1 changed file with 25 additions and 6 deletions.
31 changes: 25 additions & 6 deletions client/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,33 @@ korge {
targetDesktopCross()
}

dependencies {
add("commonMainApi", project(":shared"))
add("commonMainApi", "de.cketti.unicode:kotlin-codepoints-deluxe:0.6.1")
kotlin {
sourceSets {
val commonMain by getting {
dependencies {
api(project(":shared"))
api("de.cketti.unicode:kotlin-codepoints-deluxe:0.6.1")
api(project(":deps"))
}
}
val jsMain by getting {
dependencies {
api(project(":shared"))
}
}
val jvmMain by getting {
dependencies {
api(project(":shared"))
}
}
val mingwX64Main by getting {
dependencies {
api(project(":shared"))
}
}
}
}

dependencies {
add("commonMainApi", project(":deps"))
}

@Suppress("UnstableApiUsage")
tasks.withType<ProcessResources> {
Expand Down

0 comments on commit 4b9108b

Please sign in to comment.