when creating a kotlin multiplatform project like ...
# gradle
t
when creating a kotlin multiplatform project like in the official documentation
Copy code
plugins {
    id 'org.jetbrains.kotlin.multiplatform' version '1.3.10'
}

repositories {
    mavenCentral()
}

kotlin {
    targets {
        fromPreset(presets.jvm, 'jvm')
        fromPreset(presets.js, 'js')
        fromPreset(presets.mingwX64, 'mingw')
    }
    
    sourceSets { /* ... */ }
}
how do you go about adding the
Copy code
kotlin { }
block in the kotlin gradle dsl?