1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
<!--===========================================================================
This is the build file for the libfonts project.
This build file will use the common_build.xml file as the default build
process and should only override the tasks that need to differ from
the common build file.
See common_build.xml for more details
============================================================================-->
<project name="libfonts" basedir="." default="jar">
<description>
This build file is used to create the libformula project
and works with the common_build.xml file.
</description>
<!-- Define the default location of the common build file -->
<property name="common.build.file" value="./common_build.xml"
description="This is the location of the standardized common_build.xml file"/>
<!-- Import the common_build.xml file which contains all the default tasks -->
<import file="${common.build.file}"/>
</project>
|