Files
play-clj/template/src/leiningen/new/play_clj/desktop-project.clj
2014-04-02 00:01:24 -04:00

15 lines
572 B
Clojure

(defproject {{app-name}} "0.0.1-SNAPSHOT"
:description "FIXME: write description"
:dependencies [[com.badlogicgames.gdx/gdx "0.9.9"]
[com.badlogicgames.gdx/gdx-backend-lwjgl "0.9.9"]
[com.badlogicgames.gdx/gdx-platform "0.9.9"
:classifier "natives-desktop"]
[org.clojure/clojure "1.5.1"]
[play-clj "0.2.4"]]
:source-paths ["src" "src-common"]
:javac-options ["-target" "1.6" "-source" "1.6" "-Xlint:-options"]
:aot [{{desktop-namespace}}]
:main {{desktop-namespace}})