 487cddb2bf
			
		
	
	
		487cddb2bf
		
	
	
	
	
		
			
			The QEMU mascot which was already used for the NSIS installer is now used for all QEMU executables. Signed-off-by: Stefan Weil <sw@weilnetz.de>
		
			
				
	
	
		
			31 lines
		
	
	
		
			789 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
		
			789 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| #include <winver.h>
 | |
| #include "config-host.h"
 | |
| 
 | |
| VS_VERSION_INFO VERSIONINFO
 | |
| FILEVERSION CONFIG_FILEVERSION
 | |
| PRODUCTVERSION CONFIG_PRODUCTVERSION
 | |
| FILEFLAGSMASK VS_FFI_FILEFLAGSMASK
 | |
| FILEOS VOS_NT_WINDOWS32
 | |
| FILETYPE VFT_APP
 | |
| FILESUBTYPE VFT2_UNKNOWN
 | |
| {
 | |
|   BLOCK "StringFileInfo"
 | |
|   {
 | |
|     BLOCK "040904E4"
 | |
|     {
 | |
|       VALUE "CompanyName", "http://www.qemu.org"
 | |
|       VALUE "FileDescription", "QEMU machine emulators and tools"
 | |
|       VALUE "FileVersion", QEMU_VERSION
 | |
|       VALUE "LegalCopyright", "Copyright various authors. Released under the GNU General Public License."
 | |
|       VALUE "LegalTrademarks", "QEMU is a trademark of Fabrice Bellard."
 | |
|       VALUE "ProductName", "QEMU"
 | |
|     }
 | |
|   }
 | |
|   BLOCK "VarFileInfo"
 | |
|   {
 | |
|     VALUE "Translation", 0x0409, 1252
 | |
|   }
 | |
| }
 | |
| 
 | |
| IDI_ICON1 ICON "pc-bios/qemu-nsis.ico"
 |