added boot flag.

This commit is contained in:
Bryce Covert
2015-11-22 14:25:17 -08:00
parent 88d2d11a31
commit 989c565300
2 changed files with 2 additions and 2 deletions

View File

@@ -21,7 +21,7 @@
:profiles { :profiles {
:dev { :dev {
:source-paths ["src" "src-common" "src-dev"] :source-paths ["src" "src-common" "src-dev"]
:jvm-opts ["-Duse-repl=true"] :jvm-opts ["-Duse-repl=true" "-Dno-steam=true"]
:dependencies [[com.badlogicgames.gdx/gdx-tools "1.5.3"] :dependencies [[com.badlogicgames.gdx/gdx-tools "1.5.3"]
[org.clojure/tools.nrepl "0.2.7"] [org.clojure/tools.nrepl "0.2.7"]
[slamhound "1.5.5"] [slamhound "1.5.5"]

View File

@@ -15,7 +15,7 @@
(defmacro steamify [steam-version & [regular-version]] (defmacro steamify [steam-version & [regular-version]]
(if has-steam? (if has-steam?
`(if has-steam? `(if (and has-steam? (not (System/getProperty "no-steam")))
~steam-version ~steam-version
~regular-version) ~regular-version)
regular-version)) regular-version))