Commit ccdd20d0 authored by Ian Craggs's avatar Ian Craggs

Fix windows build

parent 1db13fd0
...@@ -70,7 +70,7 @@ ...@@ -70,7 +70,7 @@
<target name="runAtest"> <target name="runAtest">
<if> <if>
<os family="windows"/> <os family="windows"/>
<then> <then>
<exec executable="cmd.exe" failonerror="true" dir="${output.folder}/test" > <exec executable="cmd.exe" failonerror="true" dir="${output.folder}/test" >
<arg value="/c" /> <arg value="/c" />
...@@ -88,11 +88,12 @@ ...@@ -88,11 +88,12 @@
<env key="DYLD_LIBRARY_PATH" path="${output.folder}" /> <env key="DYLD_LIBRARY_PATH" path="${output.folder}" />
</exec> </exec>
</else> </else>
</if>
</target> </target>
<target name="runSSLtest"> <target name="runSSLtest">
<if> <if>
<os family="windows"/> <os family="windows"/>
<then> <then>
<exec executable="cmd.exe" failonerror="true" dir="${output.folder}/test" > <exec executable="cmd.exe" failonerror="true" dir="${output.folder}/test" >
<arg value="/c" /> <arg value="/c" />
...@@ -110,6 +111,7 @@ ...@@ -110,6 +111,7 @@
<env key="DYLD_LIBRARY_PATH" path="${output.folder}" /> <env key="DYLD_LIBRARY_PATH" path="${output.folder}" />
</exec> </exec>
</else> </else>
</if>
</target> </target>
<target name="doc" > <target name="doc" >
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment