project.clj @ cbdc3ce6eb97

Don't redraw unnecessarily

Only redraw the screen when it needs to be drawn.  This prevents us from trying
to redraw a hundred billion fucking times when we only need to do it once.
author Steve Losh <steve@stevelosh.com>
date Sun, 13 Dec 2015 13:23:53 +0000
parents 5e2ad425aa5a
children 8783b3a23dce
(defproject silt "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"]
                 [clojure-lanterna "0.9.5"]
                 [roul "0.2.0"]
                 [org.clojure/core.match "0.3.0-alpha4"]]
  :main ^:skip-aot silt.core
  :target-path "target/%s"
  :profiles {:uberjar {:aot :all}})