Add icon for executable file on Windows

This commit is contained in:
nikitar020 2018-12-19 16:17:43 +07:00 committed by Max Risuhin
parent d20b67f928
commit 395b6cc9e9
4 changed files with 25 additions and 0 deletions

1
.gitignore vendored
View File

@ -1,3 +1,4 @@
aminal
aminal.exe
*.syso
.idea

21
aminal.exe.manifest Normal file
View File

@ -0,0 +1,21 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
<assemblyIdentity
version="1.0.0.0"
processorArchitecture="x86"
name="controls"
type="win32"
/>
<dependency>
<dependentAssembly>
<assemblyIdentity
type="win32"
name="Microsoft.Windows.Common-Controls"
version="6.0.0.0"
processorArchitecture="*"
publicKeyToken="6595b64144ccf1df"
language="*"
/>
</dependentAssembly>
</dependency>
</assembly>

BIN
aminal.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

3
aminal.rc Normal file
View File

@ -0,0 +1,3 @@
100 ICON "aminal.ico"
100 24 "aminal.exe.manifest"
GLFW_ICON ICON "aminal.ico"