aboutsummaryrefslogtreecommitdiffstats
path: root/stdlib-stubs/build.gradle.kts
blob: 201ac43cb0b8a10855854f1ae70eb001eeb1932c (plain)
1
2
3
4
5
6
7
8
9
10
11
/*
 * Copyright 2016-2021 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
 */

import org.jetbrains.kotlin.gradle.tasks.KotlinCompile

tasks.named<KotlinCompile>("compileKotlin") {
    kotlinOptions {
        freeCompilerArgs += "-Xallow-kotlin-package"
    }
}