Browse Source

Change codegen/properties rules


git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@193764 13f79535-47bb-0310-9956-ffa450edef68
tags/pre-columns
Karen Lease 24 years ago
parent
commit
57511f306e
1 changed files with 24 additions and 4 deletions
  1. 24
    4
      build.xml

+ 24
- 4
build.xml View File



<property name="xslt" value="org.apache.xalan.xslt.Process"/> <property name="xslt" value="org.apache.xalan.xslt.Process"/>
<property name="src.properties.xsl" value="${src.codegen}/properties.xsl"/> <property name="src.properties.xsl" value="${src.codegen}/properties.xsl"/>
<property name="properties.xml" value="${build.codegen}/properties.xml"/>
<property name="foproperties.xml" value="${build.codegen}/foproperties.xml"/>
<property name="svgproperties.xml" value="${build.codegen}/svgproperties.xml"/>
<property name="properties.xsl" value="${build.codegen}/properties.xsl"/> <property name="properties.xsl" value="${build.codegen}/properties.xsl"/>
<property name="propmap.xsl" value="${build.codegen}/propmap.xsl"/>
<property name="enumgen.xsl" value="${build.codegen}/enumgen.xsl"/>
<property name="propinc.xsl" value="${build.codegen}/propinc.xsl"/>
<property name="src.charlist.xsl" value="${src.codegen}/code-point-mapping.xsl"/> <property name="src.charlist.xsl" value="${src.codegen}/code-point-mapping.xsl"/>
<property name="charlist.xml" value="${build.codegen}/charlist.xml"/> <property name="charlist.xml" value="${build.codegen}/charlist.xml"/>
<property name="charlist.xsl" value="${build.codegen}/code-point-mapping.xsl"/> <property name="charlist.xsl" value="${build.codegen}/code-point-mapping.xsl"/>


<!-- generate the java files from xml resources --> <!-- generate the java files from xml resources -->
<echo message="Generating the java files from xml resources"/> <echo message="Generating the java files from xml resources"/>
<xslt infile="${properties.xml}" xsltfile="${properties.xsl}"
outfile="${build.src}/${replacestring}/fo/properties/${ignore_this}" smart="yes"/>
<xslt infile="${foproperties.xml}" xsltfile="${properties.xsl}"
dependent="${propinc.xsl}"
outfile="${build.src}/${replacestring}/fo/properties/fo_${ignore_this}" smart="yes"/>
<xslt infile="${svgproperties.xml}" xsltfile="${properties.xsl}"
dependent="${propinc.xsl}"
outfile="${build.src}/${replacestring}/fo/properties/svg_${ignore_this}" smart="yes"/>
<xslt infile="${foproperties.xml}" xsltfile="${propmap.xsl}"
dependent="${propinc.xsl}"
outfile="${build.src}/${replacestring}/fo/properties/FOPropertyMapping.java" smart="yes"/>
<xslt infile="${svgproperties.xml}" xsltfile="${propmap.xsl}"
dependent="${propinc.xsl}"
outfile="${build.src}/${replacestring}/fo/properties/SVGPropertyMapping.java" smart="yes"/>
<xslt infile="${foproperties.xml}" xsltfile="${enumgen.xsl}"
dependent="${propinc.xsl}"
outfile="${build.src}/${replacestring}/fo/properties/foenums_${ignore_this}" smart="yes"/>
<xslt infile="${svgproperties.xml}" xsltfile="${enumgen.xsl}"
dependent="${propinc.xsl}"
outfile="${build.src}/${replacestring}/fo/properties/svgenums_${ignore_this}" smart="yes"/>
<xslt infile="${charlist.xml}" xsltfile="${charlist.xsl}" <xslt infile="${charlist.xml}" xsltfile="${charlist.xsl}"
outfile="${build.src}/${replacestring}/render/pdf/CodePointMapping.java" smart="yes"/> outfile="${build.src}/${replacestring}/render/pdf/CodePointMapping.java" smart="yes"/>
<xslt infile="${Courier.xml}" xsltfile="${fontfile.xsl}" <xslt infile="${Courier.xml}" xsltfile="${fontfile.xsl}"
debug="${debug}" debug="${debug}"
deprecation="${deprecation}" deprecation="${deprecation}"
optimize="${optimize}" optimize="${optimize}"
excludes="**/${ignore_this},${jimi}"/>
excludes="**/*${ignore_this},${jimi}"/>
</target> </target>


<target name="compile-jdk11" depends="codegen, prepare-src"> <target name="compile-jdk11" depends="codegen, prepare-src">

Loading…
Cancel
Save