Skip to content

Commit ad2ff73

Browse files
author
Federico Fissore
committed
Windows: arduino_debug.exe: no splash screen, outputs messages to stdout
1 parent 781271e commit ad2ff73

File tree

2 files changed

+47
-2
lines changed

2 files changed

+47
-2
lines changed

build/build.xml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -696,11 +696,12 @@
696696

697697
<copy todir="windows/work">
698698
<fileset dir="windows/launcher"
699-
includes="about.bmp, application.ico, config.xml"/>
699+
includes="about.bmp, application.ico, config.xml, config_debug.xml"/>
700700
</copy>
701701
<launch4j configFile="windows/work/config.xml" />
702+
<launch4j configFile="windows/work/config_debug.xml" />
702703
<delete dir="windows/work"
703-
includes="about.bmp, application.ico, config.xml" />
704+
includes="about.bmp, application.ico, config.xml, config_debug.xml" />
704705

705706
<!-- cygwin requires html, dll, and exe to have the +x flag -->
706707
<chmod perm="755">
Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
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/jssc-2.6.0.jar</cp>
23+
<cp>lib/commons-codec-1.7.jar</cp>
24+
<cp>lib/commons-exec-1.1.jar</cp>
25+
<cp>lib/commons-httpclient-3.1.jar</cp>
26+
<cp>lib/commons-logging-1.0.4.jar</cp>
27+
<cp>lib/jmdns-3.4.1.jar</cp>
28+
<cp>lib/jsch-0.1.50.jar</cp>
29+
</classPath>
30+
<jre>
31+
<path>java</path>
32+
<minVersion>1.6.0</minVersion>
33+
<maxVersion></maxVersion>
34+
<jdkPreference>preferJre</jdkPreference>
35+
<opt>-Xms128m -Xmx128m</opt>
36+
</jre>
37+
<messages>
38+
<startupErr>An error occurred while starting the application.</startupErr>
39+
<bundledJreErr>This application was configured to use a bundled Java Runtime Environment but the runtime is missing or corrupted.</bundledJreErr>
40+
<jreVersionErr>This application requires at least Java Development Kit</jreVersionErr>
41+
<launcherErr>The registry refers to a nonexistent Java Development Kit installation or the runtime is corrupted.</launcherErr>
42+
<instanceAlreadyExistsMsg>An application instance is already running.</instanceAlreadyExistsMsg>
43+
</messages>
44+
</launch4jConfig>

0 commit comments

Comments
 (0)