PageRenderTime 51ms CodeModel.GetById 17ms RepoModel.GetById 0ms app.codeStats 0ms

/jEdit/tags/jedit-4-3-pre5/jars/MacOS/build.xml

#
XML | 33 lines | 28 code | 5 blank | 0 comment | 0 complexity | ae7e97d5bf949eb5f1bd5c0c69bff289 MD5 | raw file
Possible License(s): BSD-3-Clause, AGPL-1.0, Apache-2.0, LGPL-2.0, LGPL-3.0, GPL-2.0, CC-BY-SA-3.0, LGPL-2.1, GPL-3.0, MPL-2.0-no-copyleft-exception, IPL-1.0
  1. <?xml version="1.0"?>
  2. <project name="MacOS"
  3. default="build">
  4. <description>
  5. This is an ant build.xml file for building the MacOS plugin for jEdit.
  6. </description>
  7. <import file="../../build-support/plugin-build.xml" />
  8. <target name="build.prepare">
  9. <mkdir dir="${build.dir}/stubclasses" />
  10. <javac srcdir="${src.dir}"
  11. includes="com/**"
  12. destdir="${build.dir}/stubclasses"
  13. compiler="modern" />
  14. </target>
  15. <selector id="compileFiles">
  16. <and>
  17. <filename name="**/*.java" />
  18. <filename name="com/apple/**"
  19. negate="true" />
  20. </and>
  21. </selector>
  22. <path id="project.class.path">
  23. <pathelement location="${build.dir}/stubclasses" />
  24. </path>
  25. <selector id="packageFiles">
  26. <filename name="MacOS.html" />
  27. </selector>
  28. </project>