Hi, On 27 Nov., 10:59, Meikel Brandmeyer <[EMAIL PROTECTED]> wrote: > However I have no experience with ant. So how can I set the > path via an envirnment variable? Eg. CLOJURE_LIB which is > also used by some startup script which was posted. That would > make a nice fit.
Ok. I looked it up: <property environment="env"/> <property name="clojure.lib" location="${env.CLOJURE_LIB}"/> <path id="clojurelib"> <fileset dir="${clojure.lib}" includes="**/*.jar"/> </path> <classpath> <path location="${src}"/> <path location="${build}"/> <path refid="clojurelib"/> </classpath> Works perfectly. Sincerely Meikel --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to clojure@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/clojure?hl=en -~----------~----~----~----~------~----~------~--~---