blob: 7b244bb0918ff0c7ded4853d37f8ffeee509dee2 [file] [log] [blame]
Aurimas Liutikas79e555e2021-05-17 17:41:41 +00001/*
2 * Copyright 2016-2021 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
3 */
4
Steve Elliottca095be2022-07-25 14:26:10 +00005val experimentalAnnotations = listOf(
6 "kotlin.Experimental",
7 "kotlinx.coroutines.ExperimentalCoroutinesApi",
8 "kotlinx.coroutines.InternalCoroutinesApi"
9)
10
11kotlin {
12 sourceSets.all { configureMultiplatform() }
Vsevolod Tolstopyatov0f158122020-04-29 23:35:41 +030013}