Add README

This commit is contained in:
2019-01-22 14:44:07 -06:00
parent 0734e74154
commit 15974bdca8
2 changed files with 47 additions and 0 deletions

View File

@@ -43,9 +43,16 @@ apply plugin:"kotlin-multiplatform"
kotlin {
targets {
fromPreset(presets.jvm, 'jvm')
fromPreset(presets.iosX64, 'iOS') {
compilations.main.outputKinds('FRAMEWORK')
}
// Replace the target above with the following to produce a framework
// which can be installed on a real iPhone.
// fromPreset(presets.iosX64, 'iOS') {
// compilations.main.outputKinds('FRAMEWORK')
// }
}
sourceSets {