-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.clj
More file actions
38 lines (30 loc) · 1.28 KB
/
project.clj
File metadata and controls
38 lines (30 loc) · 1.28 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
(defproject net.synaesmedia/patterning "0.2.0-SNAPSHOT"
:description "Generating Patterns with Clojure / Quil"
:url "http://synaesmedia.net/patterning"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.5.1"]
[org.clojure/math.numeric-tower "0.0.4"]
[quil "1.7.0"]
[com.taoensso/timbre "3.2.0"]
]
:plugins [[com.keminglabs/cljx "0.4.0"]
[lein-cljsbuild "1.0.3"]
[lein-localrepo "0.4.0"]
]
:cljx {:builds [{:source-paths ["cljx-src"]
:output-path "target/classes"
:rules :clj}
{:source-paths ["cljx-src"]
:output-path "src-cljs"
:rules :cljs}]}
:cljsbuild {:builds [{
:source-paths ["target/classes" "src-cljs" ]
:compiler {
:output-to "browser-based/js/main.js"
:optimizations :whitespace
:pretty-print true }
} ]}
:hooks [cljx.hooks leiningen.cljsbuild]
:aot [patterning.core]
:main patterning.core)