Advertisement
Guest User

Untitled

a guest
Mar 23rd, 2013
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. (defproject hello-bars "0.0.1-SNAPSHOT"
  2.   :description "hello-bars: c2 at its simplest"
  3.   :dependencies [[org.clojure/clojure "1.5.1"]
  4.                  [com.keminglabs/c2 "0.2.2"]
  5.                  [com.cemerick/piggieback "0.0.4"]]
  6.   :min-lein-version "2.0.0"
  7.   :source-paths ["src/clj"]
  8.  
  9.   :plugins [[lein-cljsbuild "0.3.0"]]
  10.   :cljsbuild
  11.   {:builds
  12.    [{:source-paths ["src/cljs"],
  13.      :compiler
  14.        {:pretty-print true,
  15.         :output-to "public/out/hello-bars.js"}}]})
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement