ADDED Windows VersionInfo to resource file
This commit is contained in:
spacy51 2008-02-21 20:04:37 +00:00
parent 70c8b87764
commit 5ee7a8946e
3 changed files with 41 additions and 1 deletions

View File

@ -4,7 +4,10 @@ QT += opengl
TARGET = VisualBoyAdvance
RESOURCES += ../../src/qt/vba-m.qrc
RC_FILE = ../../src/qt/vba-m.rc
win32 {
RC_FILE = ../../src/qt/vba-m.rc
}
TRANSLATIONS += ../../lang/german.ts
TRANSLATIONS += ../../lang/spanish.ts

View File

@ -64,6 +64,10 @@
Name="GUI"
Filter="cpp;h"
>
<File
RelativePath="..\..\src\qt\resource.h"
>
</File>
<Filter
Name="main"
>

View File

@ -1 +1,34 @@
#define VERSION 0,0,0,0
#define VERSION_STR "SVN"
IDI_ICON1 ICON DISCARDABLE "../../src/win32/VBA-M.ico"
#include <WinVer.h>
1 VERSIONINFO /* Must have 1 as ID */
FILEVERSION VERSION
PRODUCTVERSION VERSION
FILEFLAGSMASK 0x0L /* None set */
FILEFLAGS 0x0L
FILEOS VOS_NT
FILETYPE VFT_APP
FILESUBTYPE 0x0L
BEGIN
BLOCK "StringFileInfo"
BEGIN
BLOCK "040904B0" /* U.S. English & Unicode */
BEGIN
VALUE "Comments", "Qt build"
VALUE "CompanyName", "VBA-M development team"
VALUE "FileDescription", "A Nintendo Handheld Console Emulator"
VALUE "FileVersion", VERSION_STR
VALUE "InternalName", "vba-m"
VALUE "LegalCopyright", "Copyright (C) 2008 VBA-M development team"
VALUE "OriginalFilename", "VisualBoyAdvance.exe"
VALUE "ProductName", "VisualBoyAdvance-M"
VALUE "ProductVersion", VERSION_STR
END
END
END