build lib paths

This commit is contained in:
Ian Craggs 2014-04-04 22:50:03 +01:00
parent 49b4143f03
commit 7c3abe8f28
1 changed files with 3 additions and 1 deletions

View File

@ -32,6 +32,7 @@
<property name="libname.async.ssl" value="mqttv3as" />
<property name="ssl" value="yes" />
<property name="test.hostname" value="m2m.eclipse.org"/>
<property name="test.port" value="18883"/>
<target name="init">
<tstamp>
@ -70,7 +71,7 @@
<target name="runAtest">
<exec executable="./${aTest}" failonerror="true" dir="${output.folder}/test" >
<arg value="--connection" />
<arg value="tcp://${test.hostname}:18883" />
<arg value="tcp://${test.hostname}:${test.port}" />
<env key="LD_LIBRARY_PATH" path="${output.folder}/lib" />
</exec>
</target>
@ -185,3 +186,4 @@
<target name="full" depends="init, version, build, test, doc, copy" />
</project>