aboutsummaryrefslogtreecommitdiff
path: root/integration-tests/src/test/resources/kmp/annotations/build.gradle.kts
blob: f02ad073384beffdf6909221181dc545dc79ff06 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
plugins {
    kotlin("multiplatform")
    id("com.google.devtools.ksp")
}

version = "1.0-SNAPSHOT"

kotlin {
    jvm {
    }
    js(BOTH) {
        browser()
        nodejs()
    }
    linuxX64() {
    }
    androidNativeX64() {
    }
    androidNativeArm64() {
    }
    // TODO: Enable after CI's Xcode version catches up.
    // iosArm64()
    // macosX64()
    mingwX64()
    sourceSets {
        val commonMain by getting
    }
}

tasks.withType<org.jetbrains.kotlin.gradle.tasks.KotlinCompile> {
    kotlinOptions.freeCompilerArgs += "-Xuse-deprecated-legacy-compiler"
}