forked from esp1/makerbar.pov.console
-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.clj
24 lines (24 loc) · 1.2 KB
/
project.clj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
(defproject makerbar.pov.console "0.1.0-SNAPSHOT"
:description "POV Console UI"
:url "http://www.makerbar.com/"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:profiles {:dev {:dependencies [[criterium "0.4.3"]]}}
:dependencies [[aleph "0.3.2"]
[byte-streams "0.1.10"]
[extrapixel/gifAnimation "d734273"]
[leapmotion/LeapJava "1.0.9.8391"]
[org.clojure/clojure "1.6.0"]
[org.clojure/core.async "0.1.278.0-76b25b-alpha"]
[org.clojure/math.numeric-tower "0.0.4"]
[org.clojure/tools.cli "0.3.1"]
[org.processing/core "2.1.1"]
[org.processing.video/gstreamer-java "2.1.1"]
[org.processing.video/jna "2.1.1"]
[org.processing.video/video "2.1.1"]
[prismatic/hiphip "0.2.0"]]
:jvm-opts ["-Djava.library.path=lib/leapmotion-1.0.9.8391"
"-Dgstreamer.library.path=lib/processing-2.1.1/video/macosx64"
"-Dgstreamer.plugin.path=lib/processing-2.1.1/video/macosx64/plugins"]
:aot [makerbar.pov.console.ui]
:main makerbar.pov.console.ui)