-
Notifications
You must be signed in to change notification settings - Fork 45
/
Copy pathvergilCapeCode.jnlp.in
53 lines (51 loc) · 1.74 KB
/
vergilCapeCode.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
<?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@/vergilCapeCode.jnlp">
<information>
<title>Ptolemy II @PTVERSION@ CapeCode </title>
<vendor>Ptolemy Project, UC Berkeley</vendor>
<description kind="tooltip">CapeCode - Accessors Environment</description>
<icon href="ptolemy/configs/capecode/CapeCode.png"/>
<homepage href="@PTII_LOCALURL@"/>
<offline-allowed/>
</information>
<security>
<all-permissions/>
</security>
<resources>
<!-- Bump maximum heap size to 1024Mb, use JVM Props. to confirm -->
<j2se version="1.6+" max-heap-size="1024m" />
<!-- Start Jars -->
<!-- End Jars -->
</resources>
<resources os="Mac OS X">
<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="Windows">
<nativelib href="signed/lib/matlabWindows.jar"/>
</resources>
<application-desc main-class="ptolemy.actor.gui.jnlp.CapeCodeApplication">
<argument>-capecode</argument>
</application-desc>
<!-- Need to deal with Java 3D -->
</jnlp>