/jEdit/tags/jedit-4-3-pre14/jars/MacOS/build.xml
# · XML · 40 lines · 34 code · 6 blank · 0 comment · 0 complexity · ca21ef6852eef2b9940b91bf2de200d7 MD5 · raw file
- <?xml version="1.0"?>
- <project name="MacOS"
- default="build">
- <description>
- This is an ant build.xml file for building the MacOS plugin for jEdit.
- </description>
-
- <property name="jedit.install.dir"
- location="../../build" />
- <property name="docs-proc.target"
- value="none" />
-
- <property name="build.support"
- value="../../../build-support" />
- <import file="${build.support}/plugin-build.xml" />
-
- <target name="build.prepare">
- <mkdir dir="${build.dir}/stubclasses" />
- <javac srcdir="${src.dir}"
- includes="com/**"
- destdir="${build.dir}/stubclasses"
- compiler="modern" />
- </target>
-
- <selector id="compileFiles">
- <and>
- <filename name="**/*.java" />
- <filename name="com/apple/**"
- negate="true" />
- </and>
- </selector>
-
- <path id="project.class.path">
- <pathelement location="${build.dir}/stubclasses" />
- </path>
-
- <selector id="packageFiles">
- <filename name="MacOS.html" />
- </selector>
- </project>