mirror of
https://github.com/enso-org/enso.git
synced 2024-11-22 22:10:15 +03:00
13 lines
268 B
Scala
13 lines
268 B
Scala
package org.enso.build
|
|
|
|
import sbt.inputKey
|
|
import sbt.taskKey
|
|
|
|
/**
|
|
* Defines benchmarking related task keys.
|
|
*/
|
|
object BenchTasks {
|
|
lazy val bench = taskKey[Unit]("Run Benchmarks")
|
|
lazy val benchOnly = inputKey[Unit]("Run benchmarks by name substring")
|
|
}
|