mirror of https://github.com/opencv/opencv.git
Open Source Computer Vision Library
https://opencv.org/
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.
22 lines
464 B
22 lines
464 B
import sbt._ |
|
import Keys._ |
|
|
|
object OpenCVJavaDemoBuild extends Build { |
|
def scalaSettings = Seq( |
|
scalaVersion := "2.10.0", |
|
scalacOptions ++= Seq( |
|
"-optimize", |
|
"-unchecked", |
|
"-deprecation" |
|
) |
|
) |
|
|
|
def buildSettings = |
|
Project.defaultSettings ++ |
|
scalaSettings |
|
|
|
lazy val root = { |
|
val settings = buildSettings ++ Seq(name := "OpenCVJavaDemo") |
|
Project(id = "OpenCVJavaDemo", base = file("."), settings = settings) |
|
} |
|
}
|
|
|