generated from korlibs/korge-kproject-template
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3 from korlibs/feature/multiplatform.coroutine.lib
Supports coroutines in common code
- Loading branch information
Showing
44 changed files
with
4,213 additions
and
329 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
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
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 |
---|---|---|
@@ -0,0 +1,49 @@ | ||
import korlibs.korge.gradle.* | ||
import org.gradle.api.tasks.testing.logging.TestExceptionFormat | ||
import org.gradle.api.tasks.testing.logging.TestLogEvent | ||
|
||
plugins { | ||
//alias(libs.plugins.korge) | ||
//id("com.soywiz.korge") version "999.0.0.999" | ||
id("com.soywiz.korge") version "4.0.0-rc4" | ||
} | ||
|
||
korge { | ||
id = "org.korge.samples.mymodule" | ||
|
||
// To enable all targets at once | ||
|
||
//targetAll() | ||
|
||
// To enable targets based on properties/environment variables | ||
//targetDefault() | ||
|
||
// To selectively enable targets | ||
|
||
targetJvm() | ||
targetJs() | ||
targetDesktop() | ||
targetDesktopCross() | ||
targetIos() | ||
targetAndroidDirect() | ||
serializationJson() | ||
} | ||
|
||
dependencies { | ||
add("commonMainApi", project(":deps")) | ||
} | ||
|
||
// @TODO: Remove after KorGE 4.0.1 is used | ||
project.tasks.withType(org.gradle.api.tasks.testing.AbstractTestTask::class.java).all { | ||
testLogging { | ||
events = mutableSetOf( | ||
//TestLogEvent.STARTED, TestLogEvent.PASSED, | ||
TestLogEvent.SKIPPED, | ||
TestLogEvent.FAILED, | ||
TestLogEvent.STANDARD_OUT, TestLogEvent.STANDARD_ERROR | ||
) | ||
exceptionFormat = TestExceptionFormat.FULL | ||
showStackTraces = true | ||
showStandardStreams = true | ||
} | ||
} |
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,4 +1,4 @@ | ||
#name: deps | ||
dependencies: | ||
- ../luak | ||
- ./luak | ||
|
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Oops, something went wrong.