Files
play-clj/project.clj
2014-04-24 21:08:34 -04:00

13 lines
580 B
Clojure

(defproject play-clj "0.3.1"
:description "A LibGDX wrapper for easy cross-platform game development"
:url "https://github.com/oakes/play-clj"
:license {:name "Public Domain"
:url "http://unlicense.org/UNLICENSE"}
:dependencies [[com.badlogicgames.gdx/gdx "1.0.0"]
[com.badlogicgames.gdx/gdx-box2d "1.0.0"]
[com.badlogicgames.gdx/gdx-bullet "1.0.0"]
[org.clojure/clojure "1.6.0"]]
:source-paths ["src"]
:java-source-paths ["src-java"]
:javac-options ["-target" "1.6" "-source" "1.6" "-Xlint:-options"])