Files
cyberduck/runtime.xml
T
David Kocher d1e5d15ba3 Copy runtime in project build.
Former-commit-id: 611591a228c8eb178be37ab90d23030b04ece0f9
2016-03-30 22:53:24 +02:00

24 lines
909 B
XML

<?xml version="1.0" encoding="UTF-8"?>
<project name="Java Runtime" basedir=".">
<property name="runtime.dependency" value="${build}/1.8.0_74.jre"/>
<property name="bundle.runtime" value="${bundle.plugins}/Runtime.jre"/>
<property name="bundle.runtime.lib"
value="@executable_path/../MacOS/Runtime.jre/Contents/Home/lib/server/libjvm.dylib"/>
<target name="shared-library-install-name">
<echo message="Change dynamic shared library install names to ${newname} in ${directory}"/>
<apply executable="/usr/bin/install_name_tool" failonerror="true"
type="file"
parallel="false" spawn="false" force="true">
<arg line="-change ${oldname} ${newname}"/>
<fileset dir="${directory}">
<include name="*.dylib"/>
</fileset>
<srcfile/>
</apply>
</target>
</project>