Skip to content
Snippets Groups Projects
Commit e3b67757 authored by akwizgran's avatar akwizgran
Browse files

Exclude Android-specific classes from non-Android ant build.

parent 5aec9533
No related branches found
No related tags found
No related merge requests found
...@@ -13,8 +13,12 @@ ...@@ -13,8 +13,12 @@
</target> </target>
<target name='compile'> <target name='compile'>
<mkdir dir='../build'/> <mkdir dir='../build'/>
<javac srcdir='net/sf/briar' destdir='../build' source='1.5' <javac destdir='../build' source='1.5'
includeantruntime='false' debug='off'> includeantruntime='false' debug='off'>
<src path='.'/>
<include name='net/sf/briar/**'/>
<exclude name='net/sf/briar/*.java'/>
<exclude name='net/sf/briar/android/invitation/*.java'/>
<classpath> <classpath>
<fileset refid='prototype-jars'/> <fileset refid='prototype-jars'/>
<path refid='android-jar'/> <path refid='android-jar'/>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment