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.
14 lines
682 B
14 lines
682 B
(defproject simple-sample "0.1.0-SNAPSHOT" |
|
:pom-addition [:developers [:developer {:id "magomimmo"} |
|
[:name "Mimmo Cosenza"] |
|
[:url "https://github.com/magomimmoo"]]] |
|
|
|
:description "A simple project to start REPLing with OpenCV" |
|
:url "http://example.com/FIXME" |
|
:license {:name "BSD 3-Clause License" |
|
:url "http://opensource.org/licenses/BSD-3-Clause"} |
|
:dependencies [[org.clojure/clojure "1.5.1"] |
|
[opencv/opencv "2.4.7"] |
|
[opencv/opencv-native "2.4.7"]] |
|
:main simple-sample.core |
|
:injections [(clojure.lang.RT/loadLibrary org.opencv.core.Core/NATIVE_LIBRARY_NAME)])
|
|
|