Browse Source

Overridable property "fo.examples.include" added to select which examples to build

git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@448523 13f79535-47bb-0310-9956-ffa450edef68
pull/25/head
Bertrand Delacretaz 17 years ago
parent
commit
86c2920730
1 changed files with 2 additions and 1 deletions
  1. 2
    1
      build.xml

+ 2
- 1
build.xml View File

<property name="src.viewer.images.dir" value="${src.java.dir}/org/apache/fop/render/awt/viewer/images"/> <property name="src.viewer.images.dir" value="${src.java.dir}/org/apache/fop/render/awt/viewer/images"/>
<property name="xdocs.dir" value="${src.dir}/documentation/content/xdocs"/> <property name="xdocs.dir" value="${src.dir}/documentation/content/xdocs"/>
<property name="fo.examples.dir" value="${basedir}/examples/fo/basic"/> <property name="fo.examples.dir" value="${basedir}/examples/fo/basic"/>
<property name="fo.examples.include" value="**/*.fo"/>
<property name="lib.dir" value="${basedir}/lib"/> <property name="lib.dir" value="${basedir}/lib"/>
<property name="user.hyph.dir" value="${basedir}/hyph"/> <property name="user.hyph.dir" value="${basedir}/hyph"/>


<fop format="${build.property.examples.mime.type}" outdir="${build.examples.dir}" <fop format="${build.property.examples.mime.type}" outdir="${build.examples.dir}"
messagelevel="debug" basedir="${fo.examples.dir}"> messagelevel="debug" basedir="${fo.examples.dir}">
<fileset dir="${fo.examples.dir}"> <fileset dir="${fo.examples.dir}">
<include name="**/*.fo"/>
<include name="${fo.examples.include}"/>
</fileset> </fileset>
</fop> </fop>
</target> </target>

Loading…
Cancel
Save