You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

40 lines
914 B

import org.jetbrains.compose.compose
import kotlinx.benchmark.gradle.*
import org.jetbrains.kotlin.allopen.gradle.*
plugins {
kotlin("jvm") version "1.4.20"
id("org.jetbrains.compose") version "0.2.0-build132"
kotlin("plugin.allopen") version "1.4.20"
id("kotlinx.benchmark") version "0.3.0"
}
repositories {
mavenCentral()
maven("https://maven.pkg.jetbrains.space/public/p/compose/dev")
}
dependencies {
implementation(compose.desktop.currentOs)
implementation("org.jetbrains.kotlinx:kotlinx.benchmark.runtime:0.3.0")
}
configure<AllOpenExtension> {
annotation("org.openjdk.jmh.annotations.State")
}
benchmark {
configurations {
named("main") {
iterationTime = 5
iterationTimeUnit = "sec"
}
}
targets {
register("main") {
this as JvmBenchmarkTarget
jmhVersion = "1.21"
}
}
}