forked from AvramRobert/periculum
-
Notifications
You must be signed in to change notification settings - Fork 0
/
project.clj
28 lines (26 loc) · 1.28 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
25
26
27
28
(defproject periculum "0.0.1-SNAPSHOT"
:description "FIXME: write description"
:dependencies [[com.badlogicgames.gdx/gdx "1.8.0"]
[com.badlogicgames.gdx/gdx-backend-lwjgl "1.8.0"]
[com.badlogicgames.gdx/gdx-box2d "1.8.0"]
[com.badlogicgames.gdx/gdx-box2d-platform "1.8.0"
:classifier "natives-desktop"]
[com.badlogicgames.gdx/gdx-bullet "1.8.0"]
[com.badlogicgames.gdx/gdx-bullet-platform "1.8.0"
:classifier "natives-desktop"]
[com.badlogicgames.gdx/gdx-platform "1.8.0"
:classifier "natives-desktop"]
[org.clojure/clojure "1.8.0"]
[play-clj "1.0.0"]
[org.clojure/test.check "0.9.0"]
[clj-tuple "0.2.2"]
[org.flatland/useful "0.11.5"]
[org.clojure/core.match "0.3.0-alpha4"]
[org.clojure/core.async "0.2.374"]
[net.mikera/imagez "0.10.0"]
[criterium "0.4.4"]
[primitive-math "0.1.5"]]
:source-paths ["src" "src-common"]
:javac-options ["-target" "1.6" "-source" "1.6" "-Xlint:-options"]
:aot [periculum.core.desktop-launcher]
:main periculum.core.desktop-launcher)