93561a1a55
* kotlinx.atomicfu compiler plugin for JS_IR Support transformations of atomic operations introduced by the kotlinx.atomicfu library for the JS_IR backend. Compiler plugin is applied externally by the kotlinx.atomicfu gradle plugin. * Apply compiler plugin for JS platform only * New plugin test structure * testGroupOutputDirPrefix changed
23 lines
361 B
Kotlin
23 lines
361 B
Kotlin
description = "Runtime library for the Atomicfu compiler plugin"
|
|
|
|
plugins {
|
|
kotlin("js")
|
|
}
|
|
|
|
group = "org.jetbrains.kotlin"
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
kotlin {
|
|
js()
|
|
|
|
sourceSets {
|
|
js().compilations["main"].defaultSourceSet {
|
|
dependencies {
|
|
compileOnly(kotlin("stdlib-js"))
|
|
}
|
|
}
|
|
}
|
|
} |