-
Notifications
You must be signed in to change notification settings - Fork 4
/
launch4j-config.xml
49 lines (48 loc) · 1.49 KB
/
launch4j-config.xml
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
<?xml version="1.0" encoding="UTF-8"?>
<!--
To change this template, choose Tools | Templates
and open the template in the editor.
-->
<launch4jConfig>
<headerType>gui</headerType>
<outfile>dist/Megastage.exe</outfile>
<jar>dist/Megastage.jar</jar>
<errTitle>Megastage</errTitle>
<icon>resources/launch4j/win-icon.ico</icon>
<chdir>.</chdir>
<customProcName>true</customProcName>
<singleInstance>
<mutexName>org.megastage.client.Main</mutexName>
<windowTitle>Megastage</windowTitle>
</singleInstance>
<jre>
<!-- Specify one of the following or both -->
<!--path>bundled JRE path</path-->
<minVersion>1.5.0</minVersion>
<opt> -Xnoagent</opt>
</jre>
<!--splash>
<file>file</file>
<waitForWindow>true|false</waitForWindow>
<timeout>seconds [60]</timeout>
<timeoutErr>true|false</timeoutErr>
</splash-->
<!--versionInfo>
<fileVersion>x.x.x.x</fileVersion>
<txtFileVersion>text</txtFileVersion>
<fileDescription>text</fileDescription>
<copyright>text</copyright>
<productVersion>x.x.x.x</productVersion>
<txtProductVersion>text</txtProductVersion>
<productName>text</productName>
<companyName>text</companyName>
<internalName>filename</internalName>
<originalFilename>filename.exe</originalFilename>
</versionInfo-->
<!--messages>
<startupErr>text</startupErr>
<bundledJreErr>text</bundledJreErr>
<jreVersionErr>text</jreVersionErr>
<launcherErr>text</launcherErr>
</messages-->
</launch4jConfig>