forked from icyphy/ptII
-
Notifications
You must be signed in to change notification settings - Fork 0
/
vergil.jnlp.in
58 lines (57 loc) · 2.11 KB
/
vergil.jnlp.in
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<?xml version="1.0" encoding="UTF-8"?>
<!-- JNLP is the Java Network Launching Protocol
This file is derived from a *jnlp.in file by running
sed on the *.jnlp.in file and substituting
@PTII_LOCALURL@.
-->
<!-- href is needed so that web start can cache the app and
it will appear in the desktop icon
-->
<jnlp codebase="@PTII_LOCALURL@"
href="@PTII_LOCALURL@/vergil.jnlp">
<information>
<title>Ptolemy II @PTVERSION@</title>
<vendor>Ptolemy Project, UC Berkeley</vendor>
<description>Full Runtime Release Simulation Environment</description>
<description kind="tooltip">Full Version</description>
<icon href="doc/img/PtolemyIISmall.gif"/>
<homepage href="@PTII_LOCALURL@"/>
<offline-allowed/>
</information>
<security>
<all-permissions/>
</security>
<resources>
<!-- Bump maximum heap size to 768Mb, use JVM Props. to confirm -->
<!-- Possibly require 32bit for shared libraries java-vm-args="-d64" -->
<j2se version="1.8+" max-heap-size="768m"/>
<extension href="https://ptolemy.berkeley.edu/ptolemyII/java3d/java3d-1.5.2.jnlp"/>
<extension href="https://ptolemy.berkeley.edu/ptolemyII/jai/jai-1.1.3-latest.jnlp"/>
<!-- Start Jars -->
<!-- End Jars -->
</resources>
<resources os="Mac OS X">
<nativelib href="signed/lib/bcvtbMacOSX.jar"/>
<nativelib href="signed/lib/matlabMacOSX.jar"/>
</resources>
<resources os="Linux" arch="i386">
<nativelib href="signed/lib/matlabLinux.jar"/>
</resources>
<resources os="Linux" arch="x86">
<nativelib href="signed/lib/matlabLinux.jar"/>
</resources>
<resources os="Linux" arch="amd64">
<nativelib href="signed/lib/matlabLinux.jar"/>
</resources>
<resources os="Linux" arch="x86_64">
<nativelib href="signed/lib/matlabLinux.jar"/>
</resources>
<resources os="SunOS">
<nativelib href="signed/lib/matlabSunOS.jar"/>
</resources>
<resources os="Windows">
<nativelib href="signed/lib/joystickWindows.jar"/>
<nativelib href="signed/lib/matlabWindows.jar"/>
</resources>
<application-desc main-class="ptolemy.actor.gui.jnlp.FullApplication"/>
</jnlp>