13 lines
499 B
Clojure
13 lines
499 B
Clojure
(defproject hottub "1.0.0-SNAPSHOT"
|
|
:description "Hot Tub Time Machine Game Engine"
|
|
:aot [hottub.slick]
|
|
:main hottub.core
|
|
:native-path "native"
|
|
:jvm-opts ["-Djava.library.path=native"]
|
|
:dependencies [[org.clojure/clojure "1.5.0"]
|
|
[ns-tracker "0.2.1"]
|
|
[org.clojure/tools.nrepl "0.2.2"]
|
|
[org.clojars.jyaan/slick "247.1"]
|
|
[org.clojars.jyaan/slick-native "247.1"]
|
|
[org.clojars.jyaan/slick-lwjgl "247.1"]])
|