diff options
Diffstat (limited to 'integration-tests/gradle/projects/it-multiplatform-0/build.gradle.kts')
-rw-r--r-- | integration-tests/gradle/projects/it-multiplatform-0/build.gradle.kts | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/integration-tests/gradle/projects/it-multiplatform-0/build.gradle.kts b/integration-tests/gradle/projects/it-multiplatform-0/build.gradle.kts new file mode 100644 index 00000000..247e4c15 --- /dev/null +++ b/integration-tests/gradle/projects/it-multiplatform-0/build.gradle.kts @@ -0,0 +1,25 @@ +import org.jetbrains.dokka.gradle.DokkaTask + +plugins { + kotlin("multiplatform") + id("org.jetbrains.dokka") +} + +apply(from = "../template.root.gradle.kts") + +kotlin { + jvm() + linuxX64("linux") + macosX64("macos") + js() +} + +tasks.withType<DokkaTask> { + dokkaSourceSets { + create("commonMain") + create("jvmMain") + create("linuxMain") + create("macosMain") + create("jsMain") + } +} |