-
Notifications
You must be signed in to change notification settings - Fork 14
/
docbuild.xml
166 lines (134 loc) · 5.88 KB
/
docbuild.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
<?xml version="1.0"?>
<project name="BuildDocumentation" basedir=".">
<!--
This build file has been created by the Wolfram Workbench.
If you run it inside the Workbench it should not need any
modifications to create documentation.
If you run the build outside of the Workbench you may need to
modify appPath, mathematicaInstallDir and mathExe.
If you move the buildfile inside the project, you will
need to make appropriate changes to inputDir, outputDirNB,
outputDirWeb, and logDir.
Properties:
appPath the path that contains the location of the DocumentationBuild app
mathematicaInstallDir
the installation directory of Mathematica
mathExe the command to use for invoking the Mathematica Kernel
inputDir the directory in which to search for notebooks to convert
outputDirNB the directory into which notebook output will be written
outputDirWeb the directory into which web output will be written
logDir the directory into which log information will be written
buildNBDocs set this if you want to build NB documentation
buildWebDocs set this if you want to build Web documentation
-->
<!--
app.name is the name of the application.
-->
<property name="pacletName" value="FEMAddOns"/>
<property name="app.name" value="FEMAddOns"/>
<property name="pacletContainer" value="FEMAddOns"/>
<property name="dist" value="${basedir}/build" />
<target name="clean">
<delete dir="${dist}" />
</target>
<target name="docbuild">
<!--
If you want to create HTML you should always set Mathematica.DocumentationBuild.createHTML
or set Mathematica.DocumentationBuild.createHTML.setting to Mathematica.DocumentationBuild.createHTML.
-->
<property name="${Mathematica.DocumentationBuild.createHTML.setting}" value="true" />
<!--
appPath, mathematicaInstallDir and mathExe.
These need to be set appropriately for your build.
-->
<property name="appPath" value="${appPath.default}"/>
<property name="mathematicaInstallDir" value="C:\Program Files\Wolfram Research\Mathematica\8.0"/>
<property name="mathExe" value="C:\Program Files\Wolfram Research\Mathematica\8.0\MathKernel.exe"/>
<!--
If you move the build file, you need to change inputDir, outputDir, and logDir.
-->
<property name="inputDir" value="${basedir}/${docInputDir}" />
<property name="outputDirNB" value="${dist}/${pacletContainer}/${docOutputDir}" />
<property name="outputDirWeb" value="${dist}/${pacletContainer}-HTML" />
<property name="logDir" value="${dist}/log" />
<property name="jlinkpath" value="${mathematicaInstallDir}/SystemFiles/Links/JLink"/>
<echo message="DocumentationBuild: ${appPath}"/>
<echo message="Mathematica Install Dir: ${mathematicaInstallDir}"/>
<echo message="MathKernel: ${mathExe}"/>
<echo message="Input: ${inputDir}"/>
<echo message="Output NB: ${outputDirNB}"/>
<echo message="Output Web: ${outputDirWeb}"/>
<property name="buildNBDocs" value="true" />
<property name="buildWebDocs" value="true" />
<property name="includeLinkTrails" value="false"/>
<path id="jlink.lib">
<fileset dir="${jlinkpath}">
<include name="**/JLink.jar"/>
<include name="**/SystemFiles/*"/>
</fileset>
</path>
<!-- Load JLink -->
<taskdef name="mathematica"
classname="com.wolfram.jlink.util.MathematicaTask" >
<classpath refid="jlink.lib" />
</taskdef>
<property name="JLinkLoaded" value="true"/>
<ant antfile="${appPath}/DocumentationBuild/SystemFiles/ant/Build/notebook.xml"
target="main">
<property name="outputDir" value="${outputDirNB}" />
<property name="language" value="English" />
</ant>
<antcall target="createHTML" />
<antcall target="setupPaclet" />
</target>
<target name="createHTML" if="Mathematica.DocumentationBuild.createHTML">
<ant antfile="${appPath}/DocumentationBuild/SystemFiles/ant/Build/html.xml"
target="main">
<property name="local" value="True"/>
<property name="completeHTMLQ" value="True"/>
<property name="includeLinkTrails" value="False"/>
<property name="outputDir" value="${outputDirWeb}" />
<property name="language" value="English" />
</ant>
</target>
<target name="setupPaclet" if="buildNBDocs">
<copy file="${basedir}/PacletInfo.m" todir="${dist}/${pacletContainer}" overwrite="true" />
<copy todir="${dist}/${pacletContainer}/${docOutputDir}" overwrite="true" >
<fileset dir="${basedir}/${docInputDir}">
<exclude name="*/Guides/**"/>
<exclude name="*/ReferencePages/**"/>
<exclude name="*/Tutorials/**"/>
</fileset>
</copy>
</target>
<target name="Applications">
<antcall target="docbuild">
<param name="docInputDir" value="FEMAddOns/Applications/Documentation"/>
<param name="docOutputDir" value="Applications/Documentation"/>
</antcall>
</target>
<target name="DistMesh">
<antcall target="docbuild">
<param name="docInputDir" value="FEMAddOns/DistMesh/Documentation"/>
<param name="docOutputDir" value="DistMesh/Documentation"/>
</antcall>
</target>
<target name="DomainDecomposition">
<antcall target="docbuild">
<param name="docInputDir" value="FEMAddOns/DomainDecomposition/Documentation"/>
<param name="docOutputDir" value="DomainDecomposition/Documentation"/>
</antcall>
</target>
<target name="FEMUtils">
<antcall target="docbuild">
<param name="docInputDir" value="FEMAddOns/FEMUtils/Documentation"/>
<param name="docOutputDir" value="FEMUtils/Documentation"/>
</antcall>
</target>
<target name="ImportMesh">
<antcall target="docbuild">
<param name="docInputDir" value="FEMAddOns/ImportMesh/Documentation"/>
<param name="docOutputDir" value="ImportMesh/Documentation"/>
</antcall>
</target>
</project>