blob: 19e969e2d14e5ca25e09b38f023d6dcd477f367d (
plain)
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
|
<?xml version="1.0" encoding="utf-8"?>
<jnlp spec="1.0+"
codebase="http://www.bytonic.de/downloads"
href="jake2.jnlp">
<information>
<title>Jake2</title>
<vendor>Bytonic Software</vendor>
<homepage href="http://www.bytonic.de/html/jake2.html"/>
<description>Java port of the Quake2 game engine</description>
<icon href="http://jake2.sourceforge.net/icon.gif"/>
<offline-allowed/>
</information>
<security>
<all-permissions/>
</security>
<resources>
<j2se version="1.4+" max-heap-size="128M"/>
<jar href="http://jake2.sourceforge.net/lib/jake2.jar"/>
<jar href="http://jake2.sourceforge.net/lib/jogl.jar"/>
<property name="sun.java2d.noddraw" value="true"/>
</resources>
<resources os="Linux">
<j2se version="1.4+" max-heap-size="128M"/>
<jar href="http://jake2.sourceforge.net/lib/patch.jar"/>
<jar href="http://jake2.sourceforge.net/lib/linux/joal.jar"/>
<jar href="http://jake2.sourceforge.net/lib/linux/openal.jar"/>
<nativelib href="http://jake2.sourceforge.net/lib/linux/jogl-native.jar"/>
<nativelib href="http://jake2.sourceforge.net/lib/linux/joal-native.jar"/>
</resources>
<resources os="Windows">
<j2se version="1.4+" max-heap-size="80M"/>
<jar href="http://jake2.sourceforge.net/lib/windows/joal.jar"/>
<nativelib href="http://jake2.sourceforge.net/lib/windows/jogl-native.jar"/>
<nativelib href="http://jake2.sourceforge.net/lib/windows/joal-native.jar"/>
</resources>
<application-desc main-class="jake2.Jake2">
<argument>+set</argument>
<argument>vid_ref</argument>
<argument>fastjogl</argument>
<argument>+set</argument>
<argument>s_impl</argument>
<argument>joal</argument>
</application-desc>
</jnlp>
|