Skip to content
Snippets Groups Projects
build.xml 660 B
Newer Older
<project name='prototype' default='compile'>
akwizgran's avatar
akwizgran committed
	<fileset id='prototype-jars' dir='../libs'>
		<include name='*.jar'/>
	</fileset>
	<path id='android-jar'>
		<pathelement location='../android.jar'/>
	</path>
	<path id='prototype-classes'>
		<pathelement location='../build'/>
	</path>
	<target name='clean'>
		<delete dir='../build'/>
	</target>
	<target name='compile'>
		<mkdir dir='../build'/>
		<javac srcdir='.' destdir='../build' source='1.5'
akwizgran's avatar
akwizgran committed
			includeantruntime='false' debug='off'>
			<classpath>
				<fileset refid='prototype-jars'/>
				<path refid='android-jar'/>
				<path refid='prototype-classes'/>
akwizgran's avatar
akwizgran committed
			</classpath>
		</javac>
	</target>