| import org.jetbrains.kotlin.* |
| |
| plugins { |
| kotlin("multiplatform") |
| } |
| |
| kotlin { |
| sourceSets { |
| commonMain { |
| dependencies { |
| implementation(project(":kotlin-stdlib-common")) |
| } |
| kotlin.srcDir("src/main/kotlin") |
| } |
| commonTest { |
| dependencies { |
| // projectOrFiles is required for the performance project that includes kotlinx.cli compositely |
| projectOrFiles(project, ":kotlin-test")?.let { implementation(it) } |
| } |
| kotlin.srcDir("src/tests") |
| } |
| jvm { |
| compilations["main"].defaultSourceSet { |
| dependencies { |
| implementation(project(":kotlin-stdlib-jdk8")) |
| } |
| kotlin.srcDir("src/main/kotlin-jvm") |
| } |
| // JVM-specific tests and their dependencies: |
| compilations["test"].defaultSourceSet { |
| dependencies { |
| implementation(kotlinTest("junit")) |
| } |
| } |
| |
| compilations.all { |
| compileTaskProvider.configure { |
| compilerOptions { |
| optIn.add("kotlinx.cli.ExperimentalCli") |
| suppressWarnings = true |
| } |
| } |
| } |
| } |
| } |
| } |