Skip to content

Commit 994f0d7

Browse files
author
Federico Fissore
committed
Windows: arduino_debug.exe. Backport of ad2ff73
1 parent 2380a8f commit 994f0d7

File tree

2 files changed

+43
-4
lines changed

2 files changed

+43
-4
lines changed

build/build.xml

+5-4
Original file line numberDiff line numberDiff line change
@@ -499,12 +499,13 @@
499499
classpath="${launch4j.dir}/launch4j.jar; ${launch4j.dir}/lib/xstream.jar" />
500500

501501
<copy todir="windows/work">
502-
<fileset dir="windows/launcher"
503-
includes="about.bmp, application.ico, config.xml"/>
502+
<fileset dir="windows/launcher"
503+
includes="about.bmp, application.ico, config.xml, config_debug.xml"/>
504504
</copy>
505505
<launch4j configFile="windows/work/config.xml" />
506-
<delete dir="windows/work"
507-
includes="about.bmp, application.ico, config.xml" />
506+
<launch4j configFile="windows/work/config_debug.xml" />
507+
<delete dir="windows/work"
508+
includes="about.bmp, application.ico, config.xml, config_debug.xml" />
508509

509510
<!-- cygwin requires html, dll, and exe to have the +x flag -->
510511
<chmod perm="755">
+38
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
<launch4jConfig>
2+
<dontWrapJar>true</dontWrapJar>
3+
<headerType>console</headerType>
4+
<jar>lib</jar>
5+
<outfile>arduino_debug.exe</outfile>
6+
<errTitle></errTitle>
7+
<cmdLine></cmdLine>
8+
<chdir>.</chdir>
9+
<priority>normal</priority>
10+
<downloadUrl>http://java.sun.com/javase/downloads/</downloadUrl>
11+
<supportUrl></supportUrl>
12+
<customProcName>false</customProcName>
13+
<stayAlive>false</stayAlive>
14+
<manifest></manifest>
15+
<icon>application.ico</icon>
16+
<classPath>
17+
<mainClass>processing.app.Base</mainClass>
18+
<cp>lib/pde.jar</cp>
19+
<cp>lib/core.jar</cp>
20+
<cp>lib/jna.jar</cp>
21+
<cp>lib/ecj.jar</cp>
22+
<cp>lib/RXTXcomm.jar</cp>
23+
</classPath>
24+
<jre>
25+
<path>java</path>
26+
<minVersion>1.5.0</minVersion>
27+
<maxVersion></maxVersion>
28+
<jdkPreference>preferJre</jdkPreference>
29+
<opt>-Xms128m -Xmx128m</opt>
30+
</jre>
31+
<messages>
32+
<startupErr>An error occurred while starting the application.</startupErr>
33+
<bundledJreErr>This application was configured to use a bundled Java Runtime Environment but the runtime is missing or corrupted.</bundledJreErr>
34+
<jreVersionErr>This application requires at least Java Development Kit</jreVersionErr>
35+
<launcherErr>The registry refers to a nonexistent Java Development Kit installation or the runtime is corrupted.</launcherErr>
36+
<instanceAlreadyExistsMsg>An application instance is already running.</instanceAlreadyExistsMsg>
37+
</messages>
38+
</launch4jConfig>

0 commit comments

Comments
 (0)