forked from ThoughtWorksInc/DeepLearning.scala
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.sbt
More file actions
28 lines (23 loc) · 689 Bytes
/
build.sbt
File metadata and controls
28 lines (23 loc) · 689 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
libraryDependencies += ("org.lwjgl" % "lwjgl" % "3.1.6" % Optional).jar().classifier {
import scala.util.Properties._
if (isMac) {
"natives-macos"
} else if (isLinux) {
"natives-linux"
} else if (isWin) {
"natives-windows"
} else {
throw new MessageOnlyException(s"lwjgl does not support $osName")
}
}
fork := true
enablePlugins(Example)
import scala.meta._
exampleSuperTypes := exampleSuperTypes.value.map {
case ctor"_root_.org.scalatest.FreeSpec" =>
ctor"_root_.org.scalatest.AsyncFreeSpec"
case otherTrait =>
otherTrait
}
scalacOptions += "-Ypartial-unification"
libraryDependencies += "ch.qos.logback" % "logback-classic" % "1.2.6" % Test