parent
70c8b87764
commit
5ee7a8946e
|
@ -4,7 +4,10 @@ QT += opengl
|
||||||
TARGET = VisualBoyAdvance
|
TARGET = VisualBoyAdvance
|
||||||
|
|
||||||
RESOURCES += ../../src/qt/vba-m.qrc
|
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/german.ts
|
||||||
TRANSLATIONS += ../../lang/spanish.ts
|
TRANSLATIONS += ../../lang/spanish.ts
|
||||||
|
|
|
@ -64,6 +64,10 @@
|
||||||
Name="GUI"
|
Name="GUI"
|
||||||
Filter="cpp;h"
|
Filter="cpp;h"
|
||||||
>
|
>
|
||||||
|
<File
|
||||||
|
RelativePath="..\..\src\qt\resource.h"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
<Filter
|
<Filter
|
||||||
Name="main"
|
Name="main"
|
||||||
>
|
>
|
||||||
|
|
|
@ -1 +1,34 @@
|
||||||
|
#define VERSION 0,0,0,0
|
||||||
|
#define VERSION_STR "SVN"
|
||||||
|
|
||||||
|
|
||||||
IDI_ICON1 ICON DISCARDABLE "../../src/win32/VBA-M.ico"
|
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
|
||||||
|
|
Loading…
Reference in New Issue