-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.xml
44 lines (30 loc) · 1.25 KB
/
build.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<?xml version="1.0"?>
<!--
This is the build.xml file for building the CscopeFinder plugin.
It is based on the standard build.xml file for jEdit plugins.
-->
<project name="CscopeFinder" default="build" basedir=".">
<property name="compiler.source" value="1.5" />
<property name="compiler.target" value="1.5" />
<property name="build.support" value="../build-support"/>
<property file="build.properties"/>
<property file="../build.properties"/>
<import file="${build.support}/plugin-build.xml" />
<property name="jedit.plugins.dir" value="${install.dir}" />
<selector id="packageFiles">
<or>
<filename name="README" />
<!--<filename name="LICENSE" />
<filename name="index.html" />-->
</or>
</selector>
<property name="jar.name" value="${ant.project.name}.jar"/>
<property name="docs-proc.target" value="xsltproc"/>
<property name="src.dir" location="${basedir}/src"/>
<property name="build.dir" value="build"/>
<path id="project.class.path">
<pathelement location="${jedit.install.dir}/jedit.jar"/>
<pathelement location="${jedit.plugins.dir}/ProjectViewer.jar"/>
<pathelement location="${jedit.plugins.dir}/Navigator.jar"/>
</path>
</project>