You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
411 B
Kotlin
19 lines
411 B
Kotlin
|
|
project(":wizard-client:wizard-client-libgdx:desktop") {
|
|
apply(plugin = "java-library")
|
|
|
|
dependencies {
|
|
implementation(project(":wizard-client:wizard-client-libgdx:core"))
|
|
api(LibGDX.backend_lwjgl3)
|
|
api(LibGDX.platform_desktop)
|
|
}
|
|
}
|
|
|
|
project(":wizard-client:wizard-client-libgdx:core") {
|
|
apply(plugin = "java-library")
|
|
|
|
dependencies {
|
|
api(LibGDX.api)
|
|
}
|
|
}
|