build.xml 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <project name="font-ios" default=".help">
  3. <!--
  4. The build-impl.xml file imported here contains the guts of the build process. It is
  5. a great idea to read that file to understand how the process works, but it is best to
  6. limit your changes to this file.
  7. -->
  8. <import file="${basedir}/.sencha/package/build-impl.xml"/>
  9. <!--
  10. The following targets can be provided to inject logic before and/or after key steps
  11. of the build process:
  12. The "init-local" target is used to initialize properties that may be personalized
  13. for the local machine.
  14. <target name="-before-init-local"/>
  15. <target name="-after-init-local"/>
  16. The "clean" target is used to clean build output from the build.dir.
  17. <target name="-before-clean"/>
  18. <target name="-after-clean"/>
  19. The general "init" target is used to initialize all other properties, including
  20. those provided by Sencha Cmd.
  21. <target name="-before-init"/>
  22. <target name="-after-init"/>
  23. The "build" target performs the call to Sencha Cmd to build the application.
  24. <target name="-before-build"/>
  25. <target name="-after-build"/>
  26. -->
  27. </project>