aboutsummaryrefslogtreecommitdiffstats
path: root/build.xml
diff options
context:
space:
mode:
authorfotis <fotis@unknown>2000-06-22 07:49:43 +0000
committerfotis <fotis@unknown>2000-06-22 07:49:43 +0000
commit8420aefe637790296c56df42b6b5b9dd745ab04e (patch)
tree77200d7c29b4d290191f7ac373a2ab12bec5801f /build.xml
parente1a5480fdbab38bace9342b7d05557025fc4b3f9 (diff)
downloadxmlgraphics-fop-8420aefe637790296c56df42b6b5b9dd745ab04e.tar.gz
xmlgraphics-fop-8420aefe637790296c56df42b6b5b9dd745ab04e.zip
add: build java classes for font symbol, zapfdingbats
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@193433 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'build.xml')
-rw-r--r--build.xml7
1 files changed, 7 insertions, 0 deletions
diff --git a/build.xml b/build.xml
index 00e1485ea..de980bafe 100644
--- a/build.xml
+++ b/build.xml
@@ -175,6 +175,8 @@ Sometimes ant gives out this warnings, but the build is finished without any pro
<property name="Times-Italic.xml" value="${build.codegen}/Times-Italic.xml"/>
<property name="Times-Bold.xml" value="${build.codegen}/Times-Bold.xml"/>
<property name="Times-BoldItalic.xml" value="${build.codegen}/Times-BoldItalic.xml"/>
+ <property name="ZapfDingbats.xml" value="${build.codegen}/ZapfDingbats.xml"/>
+ <property name="Symbol.xml" value="${build.codegen}/Symbol.xml"/>
<taskdef name="xslt" classname="Xslt"/>
<available property="xt.present" classname="com.jclark.xsl.sax.XSLProcessor"/>
@@ -291,6 +293,11 @@ Sometimes ant gives out this warnings, but the build is finished without any pro
outfile="${build.src}/${replacestring}/render/pdf/fonts/TimesBold.java" smart="yes"/>
<xslt infile="${Times-BoldItalic.xml}" xsltfile="${fontfile.xsl}"
outfile="${build.src}/${replacestring}/render/pdf/fonts/TimesBoldItalic.java" smart="yes"/>
+ <xslt infile="${ZapfDingbats.xml}" xsltfile="${fontfile.xsl}"
+ outfile="${build.src}/${replacestring}/render/pdf/fonts/ZapfDingbats.java" smart="yes"/>
+ <xslt infile="${Symbol.xml}" xsltfile="${fontfile.xsl}"
+ outfile="${build.src}/${replacestring}/render/pdf/fonts/Symbol.java" smart="yes"/>
+
</target>