-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathproject.clj
More file actions
22 lines (19 loc) · 840 Bytes
/
project.clj
File metadata and controls
22 lines (19 loc) · 840 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
(defproject hello-quil "0.1.0-SNAPSHOT"
:description "FIXME: write description"
:url "http://example.com/FIXME"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.7.0"]
[quil "2.3.0"]
[org.clojure/clojurescript "1.7.170"]]
:plugins [[lein-cljsbuild "1.1.1"]
[lein-figwheel "0.5.0-2"]]
:hooks [leiningen.cljsbuild]
:cljsbuild {
:builds [{:source-paths ["src/"]
:figwheel true
:compiler {:main "hello-quil.core"
:asset-path "js/out"
:output-to "resources/public/js/quil.js"
:output-dir "resources/public/js/out" }}]}
)