Add template

This commit is contained in:
oakes
2014-01-18 20:15:29 -05:00
parent 6bfbdce2c7
commit f5860b976b
17 changed files with 337 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
(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.1.0-SNAPSHOT"]]
:repositories [["sonatype"
"https://oss.sonatype.org/content/repositories/snapshots/"]]
:source-paths ["src" "src-common"]
:javac-options ["-target" "1.6" "-source" "1.6" "-Xlint:-options"]
:aot [{{desktop-namespace}}]
:main {{desktop-namespace}})