-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathgeomerative-javadoc.xml
48 lines (38 loc) · 1.42 KB
/
geomerative-javadoc.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<project name="geomerative" default="build" basedir="./">
<property environment="env"/>
<path id="library-classpath">
<fileset dir="library" >
<include name="batikfont.jar"/>
<include name="geomerative.jar"/>
</fileset>
</path>
<path id="processing-core">
<fileset dir="${env.PROCESSING_PATH}">
<include name="core/library/core.jar"/>
<include name="libraries/xml/library/xml.jar"/>
</fileset>
</path>
<target name="build" description="generate the distribution" >
<mkdir dir="documentation" />
<javadoc bottom="Geomerative by Ricard Marxer, http://www.ricardmarxer.com/geomerative/"
destdir="./documentation"
verbose="false"
doctitle="Geomerative Reference"
public="true" version="false"
windowtitle="Geomerative Reference"
stylesheetfile="stylesheet.css">
<fileset dir="src" defaultexcludes="yes">
<include name="**/*"/>
</fileset>
<classpath>
<path refid="library-classpath" />
<path refid="processing-core" />
</classpath>
<tag name="invisible" scope="all" enabled="false"/>
<tag name="related" scope="all" enabled="false"/>
<tag name="extended" scope="all" enabled="false"/>
<tag name="usage" scope="all" enabled="false"/>
<tag name="eexample" scope="all" enabled="false"/>
</javadoc>
</target>
</project>