build.xml 639 B

1234567891011121314151617181920
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <project name="lplib.build" default="build" basedir=".">
  3. <property name="tools.dir" location="./tools"/>
  4. <property name="build.dir" location="./"/>
  5. <property name="charset" value="UTF-8"/>
  6. <target name="build" depends="build-all">
  7. </target>
  8. <target name="build-all">
  9. <subant target="" failonerror="false" inheritall="false">
  10. <fileset dir="${build.dir}/js" includes="**/build.xml"/>
  11. </subant>
  12. <subant target="" failonerror="false" inheritall="false">
  13. <fileset dir="${build.dir}/css" includes="**/build.xml"/>
  14. </subant>
  15. </target>
  16. </project>