-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathproject.clj
More file actions
22 lines (20 loc) · 750 Bytes
/
project.clj
File metadata and controls
22 lines (20 loc) · 750 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
(defproject pong "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.8.0"]
[quil "2.6.0"]
[hum "0.4.0"]
[org.clojure/core.async "0.3.441"]
[org.clojure/clojurescript "1.9.495"]]
:plugins [[lein-cljsbuild "1.1.5"]]
:hooks [leiningen.cljsbuild]
:cljsbuild
{:builds [{:source-paths ["src"]
:compiler
{:output-to "js/main.js"
:output-dir "out"
:main "pong.core"
:optimizations :none
:pretty-print true}}]})