]>
Commit | Line | Data |
---|---|---|
9fe6de94 BS |
1 | #include <winver.h> |
2 | #include "config-host.h" | |
3 | ||
4 | VS_VERSION_INFO VERSIONINFO | |
ddfcb8c4 PB |
5 | FILEVERSION QEMU_VERSION_MAJOR,QEMU_VERSION_MINOR,QEMU_VERSION_MICRO,0 |
6 | PRODUCTVERSION QEMU_VERSION_MAJOR,QEMU_VERSION_MINOR,QEMU_VERSION_MICRO,0 | |
9fe6de94 BS |
7 | FILEFLAGSMASK VS_FFI_FILEFLAGSMASK |
8 | FILEOS VOS_NT_WINDOWS32 | |
9 | FILETYPE VFT_APP | |
10 | FILESUBTYPE VFT2_UNKNOWN | |
11 | { | |
12 | BLOCK "StringFileInfo" | |
13 | { | |
14 | BLOCK "040904E4" | |
15 | { | |
70b7fba9 | 16 | VALUE "CompanyName", "https://www.qemu.org" |
9fe6de94 BS |
17 | VALUE "FileDescription", "QEMU machine emulators and tools" |
18 | VALUE "FileVersion", QEMU_VERSION | |
19 | VALUE "LegalCopyright", "Copyright various authors. Released under the GNU General Public License." | |
20 | VALUE "LegalTrademarks", "QEMU is a trademark of Fabrice Bellard." | |
21 | VALUE "ProductName", "QEMU" | |
22 | } | |
23 | } | |
24 | BLOCK "VarFileInfo" | |
25 | { | |
26 | VALUE "Translation", 0x0409, 1252 | |
27 | } | |
28 | } | |
487cddb2 SW |
29 | |
30 | IDI_ICON1 ICON "pc-bios/qemu-nsis.ico" |