Skip to content

Commit fceb1d7

Browse files
committed
Windows: added application manifest
1 parent 41291c2 commit fceb1d7

File tree

4 files changed

+12
-1
lines changed

4 files changed

+12
-1
lines changed

build/build.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1026,7 +1026,7 @@
10261026

10271027
<copy todir="windows/work">
10281028
<fileset dir="windows/launcher"
1029-
includes="application.ico, config.xml, config_debug.xml, arduino.l4j.ini"/>
1029+
includes="application.ico, config.xml, config_debug.xml, arduino.l4j.ini, wrapper-manifest.xml"/>
10301030
</copy>
10311031
<launch4j configFile="windows/work/config.xml" fileVersion="${revision}.0" txtFileVersion="${revision}" productVersion="${revision}.0" txtProductVersion="${revision}"/>
10321032
<launch4j configFile="windows/work/config_debug.xml" fileVersion="${revision}.0" txtFileVersion="${revision}" productVersion="${revision}.0" txtProductVersion="${revision}"/>

build/windows/launcher/config.xml

+1
Original file line numberDiff line numberDiff line change
@@ -75,4 +75,5 @@
7575
<launcherErr>The registry refers to a nonexistent Java Development Kit installation or the runtime is corrupted.</launcherErr>
7676
<instanceAlreadyExistsMsg>An application instance is already running.</instanceAlreadyExistsMsg>
7777
</messages>
78+
<manifest>wrapper-manifest.xml</manifest>
7879
</launch4jConfig>

build/windows/launcher/config_debug.xml

+1
Original file line numberDiff line numberDiff line change
@@ -75,4 +75,5 @@
7575
<launcherErr>The registry refers to a nonexistent Java Development Kit installation or the runtime is corrupted.</launcherErr>
7676
<instanceAlreadyExistsMsg>An application instance is already running.</instanceAlreadyExistsMsg>
7777
</messages>
78+
<manifest>wrapper-manifest.xml</manifest>
7879
</launch4jConfig>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0" xmlns:asmv3="urn:schemas-microsoft-com:asm.v3">
2+
3+
<asmv3:application>
4+
<asmv3:windowsSettings xmlns="http://schemas.microsoft.com/SMI/2005/WindowsSettings">
5+
<dpiAware>true</dpiAware>
6+
</asmv3:windowsSettings>
7+
</asmv3:application>
8+
9+
</assembly>

0 commit comments

Comments
 (0)