2018-11-06 14:09:43 +03:00
|
|
|
plugins {
|
2018-12-05 09:55:30 +03:00
|
|
|
id "org.jetbrains.kotlin.multiplatform"
|
2018-11-06 14:09:43 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
jcenter()
|
|
|
|
}
|
|
|
|
|
|
|
|
kotlin {
|
|
|
|
targets {
|
|
|
|
fromPreset(presets.jvm, 'jvm')
|
|
|
|
//fromPreset(presets.js, 'js')
|
|
|
|
// For ARM, preset should be changed to presets.iosArm32 or presets.iosArm64
|
|
|
|
// For Linux, preset should be changed to e.g. presets.linuxX64
|
|
|
|
// For MacOS, preset should be changed to e.g. presets.macosX64
|
|
|
|
//fromPreset(presets.iosX64, 'ios')
|
|
|
|
}
|
|
|
|
sourceSets {
|
|
|
|
commonMain {
|
|
|
|
dependencies {
|
|
|
|
api project(":dataforge-context")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|