changing layout, adding ant and eclipse sections, more pictures

This commit is contained in:
Andrey Pavlenko
2013-02-14 17:54:37 +04:00
parent c2c2403a79
commit a8c2fc6908
39 changed files with 506 additions and 138 deletions

View File

@@ -0,0 +1,22 @@
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)
}
}