Updated ant build files for multi-project structure.

This commit is contained in:
akwizgran
2012-12-05 23:15:35 +00:00
parent f5626bee05
commit dca9470c28
5 changed files with 54 additions and 50 deletions

View File

@@ -1,14 +1,18 @@
<?xml version="1.0" encoding="UTF-8"?>
<project name="Briar" default="help">
<target name="-pre-compile">
<path id="project.all.jars.path">
<path path="${toString:project.all.jars.path}"/>
<fileset dir="${jar.libs.dir}">
<include name="*.jar"/>
</fileset>
<fileset dir="${external.libs.dir}">
<include name="*.jar"/>
</fileset>
</path>
<?xml version='1.0' encoding='UTF-8'?>
<project name='Briar Custom Rules' default='help'>
<target name='-pre-compile'>
<path id='project.all.jars.path'>
<path path='${toString:project.all.jars.path}'/>
<fileset dir='${api.jar.libs.dir}'>
<exclude name='android.jar'/>
<include name='*.jar'/>
</fileset>
<fileset dir='${core.jar.libs.dir}'>
<include name='*.jar'/>
</fileset>
<fileset dir='${jar.libs.dir}'>
<include name='*.jar'/>
</fileset>
</path>
</target>
</project>