comparison build.xml @ 44:6999afa6fff3

Update Building instructions; minor build system bug fixes.
author David Barts <davidb@stashtea.com>
date Sun, 03 May 2020 16:15:10 -0700
parents 8aada13933c6
children fb407182ba76
comparison
equal deleted inserted replaced
43:8aada13933c6 44:6999afa6fff3
15 </fail> 15 </fail>
16 </sequential> 16 </sequential>
17 </macrodef> 17 </macrodef>
18 <env-require name="JRE_HOME"/> 18 <env-require name="JRE_HOME"/>
19 <env-require name="KOTLIN_HOME"/> 19 <env-require name="KOTLIN_HOME"/>
20 <env-require name="OSDEP_HOME"/>
20 21
21 <!-- cribbed from https://stackoverflow.com/questions/7129672/uppercase-lowercase-capitalize-an-ant-property --> 22 <!-- cribbed from https://stackoverflow.com/questions/7129672/uppercase-lowercase-capitalize-an-ant-property -->
22 <scriptdef language="javascript" name="toLowerCase"> 23 <scriptdef language="javascript" name="toLowerCase">
23 <attribute name="value" /> 24 <attribute name="value" />
24 <attribute name="target" /> 25 <attribute name="target" />
148 149
149 <!-- rename files containing OS-dependant code --> 150 <!-- rename files containing OS-dependant code -->
150 <target name="osdep"> 151 <target name="osdep">
151 <exec executable="${env.JRE_HOME}/bin/java" failonerror="true"> 152 <exec executable="${env.JRE_HOME}/bin/java" failonerror="true">
152 <arg value="-jar"/> 153 <arg value="-jar"/>
153 <arg value="../Osdep/osdep.jar"/> 154 <arg file="${env.OSDEP_HOME}/osdep.jar"/>
154 <arg value="${src.home}"/> 155 <arg value="${src.home}"/>
155 </exec> 156 </exec>
156 </target> 157 </target>
157 158
158 <!-- do everything but install --> 159 <!-- do everything but install -->