Include directions on how to enable compiling with IR
This commit is contained in:
@@ -49,6 +49,20 @@ assert(hello.length == "World".substring(1, 4).length)
|
|||||||
at <stacktrace>
|
at <stacktrace>
|
||||||
```
|
```
|
||||||
|
|
||||||
|
## Kotlin IR
|
||||||
|
|
||||||
|
Using this compiler plugin only works if the code is compiled using IR. This can
|
||||||
|
only be enabled when compiling the test SourceSet if desired. As Kotlin IR is
|
||||||
|
still experimental, mileage may vary.
|
||||||
|
|
||||||
|
```groovy
|
||||||
|
compileTestKotlin {
|
||||||
|
kotlinOptions {
|
||||||
|
useIR = true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
## Project Snapshots
|
## Project Snapshots
|
||||||
|
|
||||||
Snapshot builds are available through Sonatype Snapshot repository.
|
Snapshot builds are available through Sonatype Snapshot repository.
|
||||||
|
|||||||
Reference in New Issue
Block a user