2015-08-22 05:07:37 +00:00
|
|
|
(defproject $PROJECT_NAME_HYPHENATED$ "0.1.0-SNAPSHOT"
|
|
|
|
:description "FIXME: write description"
|
|
|
|
:url "http://example.com/FIXME"
|
|
|
|
:license {:name "Eclipse Public License"
|
|
|
|
:url "http://www.eclipse.org/legal/epl-v10.html"}
|
|
|
|
:dependencies [[org.clojure/clojure "1.7.0"]
|
2015-11-24 21:44:57 +00:00
|
|
|
[org.clojure/clojurescript "1.7.170"]
|
2015-11-20 19:12:33 +00:00
|
|
|
[reagent "0.5.1" :exclusions [cljsjs/react]]
|
|
|
|
[re-frame "0.5.0"]]
|
2015-11-24 21:44:57 +00:00
|
|
|
:plugins [[lein-cljsbuild "1.1.1"]]
|
2015-11-22 09:57:51 +00:00
|
|
|
:cljsbuild {:builds {:dev {:source-paths ["src"]
|
2015-11-24 21:44:57 +00:00
|
|
|
:compiler {:output-to "index.ios.js"
|
|
|
|
:main "$PROJECT_NAME_HYPHENATED$.ios.core"
|
2015-11-20 19:12:33 +00:00
|
|
|
:output-dir "target/out"
|
2015-11-24 21:44:57 +00:00
|
|
|
:optimizations :simple}}
|
2015-11-22 09:57:51 +00:00
|
|
|
:android {:source-paths ["src"]
|
2015-11-24 21:44:57 +00:00
|
|
|
:compiler {:output-to "index.android.js"
|
|
|
|
:main "$PROJECT_NAME_HYPHENATED$.android.core"
|
2015-11-20 19:12:33 +00:00
|
|
|
:output-dir "target/android"
|
|
|
|
:optimizations :simple}}}})
|