rosado / clj-processing

A wrapper for Processing in Clojure.

clj-processing / build.xml
100644 24 lines (18 sloc) 0.594 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<project name="clojure-processing" default="jar">
 
  <description>
    Pack all rosado.processing sources into a JAR.
  </description>
 
  <!-- The JAR file to create. -->
  <property name="jarfile" location="rosado.processing.jar"/>
 
  <target name="clean"
          description="Remove generated files and directories.">
    <delete file="${jarfile}"/>
  </target>
 
  <target name="jar"
          description="Create jar file.">
    <jar jarfile="${jarfile}">
      <fileset dir="." includes="CPL.TXT"/>
      <fileset dir="src" includes="rosado/**/*.clj"/>
    </jar>
  </target>
 
</project>