mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-14 19:59:05 +01:00
Updated ant build files for multi-project structure.
This commit is contained in:
@@ -9,8 +9,9 @@
|
||||
# 'source.dir' for the location of your java source folder and
|
||||
# 'out.dir' for the location of your output folder.
|
||||
|
||||
source.dir=src:../briar-core/src
|
||||
external.libs.dir=../briar-core/libs
|
||||
source.dir=../briar-api/src:../briar-core/src:src
|
||||
api.jar.libs.dir=../briar-api/libs
|
||||
core.jar.libs.dir=../briar-core/libs
|
||||
|
||||
# You can also use it define how the release builds are signed by declaring
|
||||
# the following properties:
|
||||
|
||||
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user