Menu

[r1115]: / trunk / LWJGL / www / jnlp / lwjgl-demo.php  Maximize  Restore  History

Download this file

44 lines (43 with data), 1.5 kB

 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
<?
header("Content-type: application/x-java-jnlp-file");
?>
<!-- JNLP File for LWJGL Demos -->
<jnlp
spec="1.0+"
codebase="http://lwjgl.org/jnlp/"
href="lwjgl-demo.php/<?php echo substr($_SERVER["PATH_INFO"], 1, strlen($_SERVER["PATH_INFO"])-1); ?>">
<information>
<title>LWJGL Demo [<?php echo substr($_SERVER["PATH_INFO"], 1, strlen($_SERVER["PATH_INFO"])-1); ?>]</title>
<vendor>LWJGL</vendor>
<homepage href="http://lwjgl.orgt/"/>
<description>Demonstration of LWJGL</description>
<description kind="short">Technology Preview</description>
<offline-allowed/>
</information>
<security>
<all-permissions/>
</security>
<resources>
<j2se version="1.4+"/>
<?php
if (strpos($_SERVER["PATH_INFO"], "openal") > -1 ||
strpos($_SERVER["PATH_INFO"], "opengl") > -1) {
echo " <jar href=\"lwjgl-media.jar\"/>";
}
?>
<jar href="lwjgl.jar"/>
<jar href="lwjgl_test.jar" main="true"/>
</resources>
<resources os="Windows">
<j2se version="1.4+"/>
<nativelib href="lwjgl-windows.jar"/>
<nativelib href="lwjglaudio-windows.jar"/>
</resources>
<resources os="Linux" arch="i386">
<j2se version="1.4+"/>
<nativelib href="lwjgl-rh8-9.jar"/>
<nativelib href="openal-rh8-9.jar"/>
</resources>
<!--<property key="java.library.path" value="." />-->
<application-desc main-class="org.lwjgl.test.<?php echo substr($_SERVER["PATH_INFO"], 1, strlen($_SERVER["PATH_INFO"])-1); ?>"/>
</jnlp>
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.