summaryrefslogtreecommitdiff
path: root/sw-client/build.gradle.kts
diff options
context:
space:
mode:
authorjoffrey-bion <joffrey.bion@gmail.com>2021-02-12 01:40:01 +0100
committerjoffrey-bion <joffrey.bion@gmail.com>2021-02-12 01:59:12 +0100
commitfaec8b33c0366d65848bdca264c9a3f5f5d102a6 (patch)
treec193fef242036f4d35a8dfcf4a86aff2638b49b4 /sw-client/build.gradle.kts
parentFix pulsing red (remove incorrect preparedMove field) (diff)
downloadseven-wonders-faec8b33c0366d65848bdca264c9a3f5f5d102a6.tar.gz
seven-wonders-faec8b33c0366d65848bdca264c9a3f5f5d102a6.tar.bz2
seven-wonders-faec8b33c0366d65848bdca264c9a3f5f5d102a6.zip
Fix race when bots leave game
Diffstat (limited to 'sw-client/build.gradle.kts')
-rw-r--r--sw-client/build.gradle.kts3
1 files changed, 3 insertions, 0 deletions
diff --git a/sw-client/build.gradle.kts b/sw-client/build.gradle.kts
index 68953bc4..f29fcbf8 100644
--- a/sw-client/build.gradle.kts
+++ b/sw-client/build.gradle.kts
@@ -8,6 +8,9 @@ kotlin {
browser() // necessary for local dependency from JS UI module
}
sourceSets {
+ all {
+ languageSettings.useExperimentalAnnotation("kotlin.RequiresOptIn")
+ }
val commonMain by getting {
dependencies {
api(project(":sw-common-model"))
bgstack15