sets 'android.home' property

git-svn-id: http://lampsvn.epfl.ch/svn-repos/scala/scala/trunk@13369 5e8d7ff9-d8ef-0310-90f0-a4852d11357a
This commit is contained in:
michelou 2007-11-28 10:26:16 +00:00
parent bb43f762bf
commit f34d66c6b6
1 changed files with 12 additions and 0 deletions

View File

@ -59,6 +59,7 @@ PROPERTIES
<property name="android.dir" value="${build.dir}/android"/>
<property name="msil.dir" value="${build.dir}/msil"/>
<property name="mono.dir" value="${src.dir}/mono"/>
<!-- Sets location and structure of the distribution -->
<property name="dist.dir" value="${basedir}/dists"/>
<property name="lib.jar.name" value="scala-library.jar"/>
@ -76,8 +77,19 @@ PROPERTIES
<property name="comp.prop.name" value="compiler.properties"/>
<property name="lib.prop.name" value="library.properties"/>
<property name="par.prop.name" value="partest.properties"/>
<!-- if available, faster stability checking -->
<property name="stability.tool" value="/home/linuxsoft/apps/stability/stability"/>
<!-- Sets location of Android installation -->
<condition property="android.home" value="${unix.android.home}">
<and><os family="unix"/><isset property="unix.android.home"/></and>
</condition>
<condition property="android.home" value="${win.android.home}">
<and><os family="windows"/><isset property="win.android.home"/></and>
</condition>
<property name="android.home" value="${env.ANDROID_HOME}"/>
<!-- ===========================================================================
ANT INITIALISATION
============================================================================ -->