mirror of
https://github.com/mcanlas/6502-opcodes.git
synced 2024-11-19 07:31:35 +00:00
11 lines
194 B
Scala
11 lines
194 B
Scala
import sbt.Keys._
|
|
import sbt._
|
|
|
|
object ProjectPlugin extends AutoPlugin {
|
|
override def trigger = allRequirements
|
|
|
|
override lazy val projectSettings = Seq(
|
|
scalaVersion := "2.13.3"
|
|
)
|
|
}
|