1
0
mirror of https://github.com/opencv/opencv.git synced 2026-07-30 15:53:03 +04:00

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
+22
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)
}
}
+1
View File
@@ -0,0 +1 @@
addSbtPlugin("com.typesafe.sbteclipse" % "sbteclipse-plugin" % "2.1.0")