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.
23 lines
464 B
23 lines
464 B
12 years ago
|
import sbt._
|
||
|
import Keys._
|
||
|
|
||
|
object OpenCVJavaDemoBuild extends Build {
|
||
|
def scalaSettings = Seq(
|
||
|
scalaVersion := "2.10.0",
|
||
|
scalacOptions ++= Seq(
|
||
|
"-optimize",
|
||
|
"-unchecked",
|
||
|
"-deprecation"
|
||
|
)
|
||
|
)
|
||
|
|
||
12 years ago
|
def buildSettings =
|
||
|
Project.defaultSettings ++
|
||
12 years ago
|
scalaSettings
|
||
|
|
||
|
lazy val root = {
|
||
|
val settings = buildSettings ++ Seq(name := "OpenCVJavaDemo")
|
||
|
Project(id = "OpenCVJavaDemo", base = file("."), settings = settings)
|
||
|
}
|
||
|
}
|