summaryrefslogtreecommitdiff
path: root/game-model/build.gradle
diff options
context:
space:
mode:
Diffstat (limited to 'game-model/build.gradle')
-rw-r--r--game-model/build.gradle47
1 files changed, 47 insertions, 0 deletions
diff --git a/game-model/build.gradle b/game-model/build.gradle
new file mode 100644
index 00000000..4656b652
--- /dev/null
+++ b/game-model/build.gradle
@@ -0,0 +1,47 @@
+plugins {
+ id 'kotlin-multiplatform'
+}
+
+kotlin {
+ jvm()
+ js()
+ mingwX64("mingw")
+ sourceSets {
+ commonMain {
+ dependencies {
+ implementation kotlin('stdlib-common')
+ }
+ }
+ commonTest {
+ dependencies {
+ implementation kotlin('test-common')
+ implementation kotlin('test-annotations-common')
+ }
+ }
+ jvmMain {
+ dependencies {
+ implementation kotlin('stdlib-jdk8')
+ }
+ }
+ jvmTest {
+ dependencies {
+ implementation kotlin('test')
+ implementation kotlin('test-junit')
+ }
+ }
+ jsMain {
+ dependencies {
+ implementation kotlin('stdlib-js')
+ }
+ }
+ jsTest {
+ dependencies {
+ implementation kotlin('test-js')
+ }
+ }
+ mingwMain {
+ }
+ mingwTest {
+ }
+ }
+} \ No newline at end of file
bgstack15