Develop and Download Open Source Software

Browse Subversion Repository

Contents of /misc/buildsrc.xml

Parent Directory Parent Directory | Revision Log Revision Log


Revision 93 - (show annotations) (download)
Sun Feb 10 03:31:20 2013 UTC (11 years, 1 month ago) by ohkubo-k
File MIME type: text/plain
File size: 781 byte(s)
130210 release
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project name="ClassicalEPWING" default="all" basedir=".">
3 <property name="src.dir" location="../src" />
4 <property name="lib.dir" location="../misc" />
5 <property name="build.dir" location="../build" />
6
7 <target name="init">
8 <mkdir dir="${build.dir}" />
9 </target>
10
11 <target name="all" depends="init" description="compile the source ">
12 <path id="classpath.fileset">
13 <fileset dir="${lib.dir}">
14 <include name="*.jar" />
15 </fileset>
16 </path>
17 <javac srcdir="${src.dir}" classpathref="classpath.fileset" destdir="${build.dir}" encoding="UTF-8" includeantruntime="false"/>
18 </target>
19
20 <target name="clean">
21 <delete includeemptydirs="true">
22 <fileset dir="${build.dir}" includes="**/*" />
23 </delete>
24 </target>
25
26 </project>

Properties

Name Value
svn:mime-type text/plain

Back to OSDN">Back to OSDN
ViewVC Help
Powered by ViewVC 1.1.26