|
Lines 1435-1444
Link Here
|
| 1435 |
<move file="${src}" tofile="${dest}" /> |
1435 |
<move file="${src}" tofile="${dest}" /> |
| 1436 |
</target> |
1436 |
</target> |
| 1437 |
|
1437 |
|
| 1438 |
<target name="rename.dylib" if="isOSX"> |
|
|
| 1439 |
<move file="${src}" tofile="${dest}" /> |
| 1440 |
</target> |
| 1441 |
|
| 1442 |
<!-- Only compile the ffmpeg version depending source files |
1438 |
<!-- Only compile the ffmpeg version depending source files |
| 1443 |
against their respective header files! |
1439 |
against their respective header files! |
| 1444 |
We do not use the resulting static libraries directly, |
1440 |
We do not use the resulting static libraries directly, |
|
Lines 1473-1479
Link Here
|
| 1473 |
<targetfiles> |
1469 |
<targetfiles> |
| 1474 |
<fileset dir="${obj.joglsub}" includes="lib@{output.lib.name}.so"/> |
1470 |
<fileset dir="${obj.joglsub}" includes="lib@{output.lib.name}.so"/> |
| 1475 |
<fileset dir="${obj.joglsub}" includes="@{output.lib.name}.dll"/> |
1471 |
<fileset dir="${obj.joglsub}" includes="@{output.lib.name}.dll"/> |
| 1476 |
<fileset dir="${obj.joglsub}" includes="lib@{output.lib.name}.jnilib"/> |
1472 |
<fileset dir="${obj.joglsub}" includes="lib@{output.lib.name}.dylib"/> |
| 1477 |
</targetfiles> |
1473 |
</targetfiles> |
| 1478 |
<sequential> |
1474 |
<sequential> |
| 1479 |
<cc outtype="shared" |
1475 |
<cc outtype="shared" |
|
Lines 1595-1601
Link Here
|
| 1595 |
<targetfiles> |
1591 |
<targetfiles> |
| 1596 |
<fileset dir="${obj.jogl}" includes="lib@{output.lib.name}.so"/> |
1592 |
<fileset dir="${obj.jogl}" includes="lib@{output.lib.name}.so"/> |
| 1597 |
<fileset dir="${obj.jogl}" includes="@{output.lib.name}.dll"/> |
1593 |
<fileset dir="${obj.jogl}" includes="@{output.lib.name}.dll"/> |
| 1598 |
<fileset dir="${obj.jogl}" includes="lib@{output.lib.name}.jnilib"/> |
1594 |
<fileset dir="${obj.jogl}" includes="lib@{output.lib.name}.dylib"/> |
| 1599 |
</targetfiles> |
1595 |
</targetfiles> |
| 1600 |
<sequential> |
1596 |
<sequential> |
| 1601 |
<cc outtype="shared" |
1597 |
<cc outtype="shared" |
|
Lines 1644-1656
Link Here
|
| 1644 |
|
1640 |
|
| 1645 |
<!-- FIXME: this is a hack; the cpptask should have an option to change the |
1641 |
<!-- FIXME: this is a hack; the cpptask should have an option to change the |
| 1646 |
suffix or at least understand the override from dylib to jnilib --> |
1642 |
suffix or at least understand the override from dylib to jnilib --> |
| 1647 |
<antcall target="rename.dylib" inheritRefs="true"> |
|
|
| 1648 |
<param name="src" value="${obj.jogl}/lib@{output.lib.name}.dylib" /> |
| 1649 |
<param name="dest" value="${obj.jogl}/lib@{output.lib.name}.jnilib" /> |
| 1650 |
</antcall> |
| 1651 |
|
| 1652 |
<!-- FIXME: this is a hack; the cpptask should have an option to change the |
| 1653 |
suffix or at least understand the override from dylib to jnilib --> |
| 1654 |
<antcall target="rename.mingw.dll" inheritRefs="true"> |
1643 |
<antcall target="rename.mingw.dll" inheritRefs="true"> |
| 1655 |
<param name="src" value="${obj.jogl}/lib@{output.lib.name}.so" /> |
1644 |
<param name="src" value="${obj.jogl}/lib@{output.lib.name}.so" /> |
| 1656 |
<param name="dest" value="${obj.jogl}/@{output.lib.name}.dll" /> |
1645 |
<param name="dest" value="${obj.jogl}/@{output.lib.name}.dll" /> |