Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Tetragramm
GitHub Repository: Tetragramm/opencv
Path: blob/master/samples/java/sbt/project/build.scala
16337 views
1
import sbt._
2
import Keys._
3
4
object OpenCVJavaDemoBuild extends Build {
5
def scalaSettings = Seq(
6
scalaVersion := "2.10.0",
7
scalacOptions ++= Seq(
8
"-optimize",
9
"-unchecked",
10
"-deprecation"
11
)
12
)
13
14
def buildSettings =
15
Project.defaultSettings ++
16
scalaSettings
17
18
lazy val root = {
19
val settings = buildSettings ++ Seq(name := "OpenCVJavaDemo")
20
Project(id = "OpenCVJavaDemo", base = file("."), settings = settings)
21
}
22
}
23
24