diff options
author | Blue Swirl <blauwirbel@gmail.com> | 2010-09-26 16:07:57 +0000 |
---|---|---|
committer | Blue Swirl <blauwirbel@gmail.com> | 2010-09-26 16:07:57 +0000 |
commit | 9fe6de944930985885510f8e95d14104437d7c32 (patch) | |
tree | cf10b93e6ea15a694a2b5ac0d947087b17106fa1 /version.rc | |
parent | 0ba8681eee36af77109505c34b5e29da52fa51ba (diff) |
mingw: add version information to the executables
Add QEMU version information to the executables, based on earlier
work by C. W. Betts and Robert Riebisch.
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
Diffstat (limited to 'version.rc')
-rw-r--r-- | version.rc | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/version.rc b/version.rc new file mode 100644 index 0000000000..82e10ecf26 --- /dev/null +++ b/version.rc @@ -0,0 +1,28 @@ +#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 + } +} |