-
Notifications
You must be signed in to change notification settings - Fork 43
/
vergilVisualSense.jnlp.in
42 lines (42 loc) · 1.45 KB
/
vergilVisualSense.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
<?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@/vergilVisualSense.jnlp">
<information>
<title>VisualSense @PTVERSION@</title>
<vendor>Ptolemy Project, UC Berkeley</vendor>
<description>Wireless Sensor Networks Modeling Tool</description>
<description kind="tooltip">Wireless Sensor Networks Modeling Tool</description>
<icon href="ptolemy/configs/visualsense/visualsense.gif"/>
<homepage href="@PTII_LOCALURL@"/>
<offline-allowed/>
</information>
<security>
<all-permissions/>
</security>
<resources>
<!-- Bump maximum heap size to 512Mb, use JVM Props. to confirm -->
<j2se version="1.6+" max-heap-size="512m" />
<!-- Start Jars -->
<!-- End Jars -->
</resources>
<resources os="Mac OS X">
<nativelib href="signed/lib/matlabMacOSX.jar"/>
</resources>
<resources os="SunOS">
<nativelib href="signed/lib/matlabSunOS.jar"/>
</resources>
<resources os="Windows">
<nativelib href="signed/lib/matlabWindows.jar"/>
</resources>
<application-desc main-class="ptolemy.actor.gui.jnlp.VisualSenseApplication">
<argument>-visualsense</argument>
</application-desc>
</jnlp>