I'm using Clojure 1.3 with leiningen2.
I added seesaw as a dependency:
[seesaw "1.4.2"]
Then I added it to my clojure file in the ns macro:
(:use seesaw.core)
Then I compiled the file:
lein compile
It takes 2 or 3 minutes to compile.
Without (:use
seesaw.com) in my file my project compiles in 7 seconds.
I also tried this using the develop branch of seesaw 1.4.3-SNAPSHOT and Clojure 1.4, with the same results.
I need to aot compile my classes. Why is it slow, can it be fast?
Nick