-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
448c22b
commit 358f87e
Showing
1 changed file
with
2 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,34 +1,12 @@ | ||
import com.android.build.gradle.internal.tasks.* | ||
import korlibs.korge.gradle.* | ||
|
||
plugins { | ||
alias(libs.plugins.korge) | ||
|
||
} | ||
|
||
plugins { alias(libs.plugins.korge) } | ||
|
||
korge { | ||
id = "com.sample.demo" | ||
|
||
// To enable all targets at once | ||
|
||
//targetAll() | ||
|
||
// To enable targets based on properties/environment variables | ||
//targetDefault() | ||
|
||
// To selectively enable targets | ||
|
||
targetJvm() | ||
targetJs() | ||
|
||
serializationJson() | ||
jvmMainClassName = "MainKt" | ||
|
||
} | ||
|
||
dependencies { | ||
add("commonMainApi", project(":deps")) | ||
//add("commonMainApi", project(":korge-dragonbones")) | ||
} | ||
// Jacoco report generation | ||
dependencies { add("commonMainApi", project(":deps")) } |