xref: /aosp_15_r20/external/ksp/integration-tests/src/test/resources/kmp/annotations/build.gradle.kts (revision af87fb4bb8e3042070d2a054e912924f599b22b7)

<lambda>null1 plugins {
2     kotlin("multiplatform")
3     id("com.google.devtools.ksp")
4 }
5 
6 version = "1.0-SNAPSHOT"
7 
<lambda>null8 kotlin {
9     jvm {
10     }
11     js(BOTH) {
12         browser()
13         nodejs()
14     }
15     linuxX64() {
16     }
17     androidNativeX64() {
18     }
19     androidNativeArm64() {
20     }
21     // TODO: Enable after CI's Xcode version catches up.
22     // iosArm64()
23     // macosX64()
24     mingwX64()
25     sourceSets {
26         val commonMain by getting
27     }
28 }
29 
<lambda>null30 tasks.withType<org.jetbrains.kotlin.gradle.tasks.KotlinCompile> {
31     kotlinOptions.freeCompilerArgs += "-Xuse-deprecated-legacy-compiler"
32 }
33