mirror of
https://gitee.com/drabel/LibQQt.git
synced 2025-01-04 10:18:44 +08:00
44 lines
993 B
Plaintext
44 lines
993 B
Plaintext
# if defined (UNDER_CE)
|
|
# include <winbase.h>
|
|
# else
|
|
# include <windows.h>
|
|
# endif
|
|
# include "qqtversion.h"
|
|
|
|
// 图标
|
|
/*IDI_ICON1 ICON PRODUCT_ICON*/
|
|
|
|
// 版本信息
|
|
VS_VERSION_INFO VERSIONINFO
|
|
FILEVERSION FILE_VERSION
|
|
PRODUCTVERSION PRODUCT_VERSION
|
|
FILEFLAGSMASK 0x3fL
|
|
#ifdef _DEBUG
|
|
FILEFLAGS 0x1L
|
|
#else
|
|
FILEFLAGS 0x0L
|
|
#endif
|
|
FILEOS 0x40004L
|
|
FILETYPE 0x1L
|
|
FILESUBTYPE 0x0L
|
|
BEGIN
|
|
BLOCK "StringFileInfo"
|
|
BEGIN
|
|
BLOCK "080404b0"
|
|
BEGIN
|
|
VALUE "CompanyName", COMPANY_NAME
|
|
VALUE "FileDescription", FILE_DESCRIPTION
|
|
VALUE "FileVersion", FILE_VERSION_STR
|
|
VALUE "InternalName", INTERNAL_NAME
|
|
VALUE "LegalCopyright", LEGAL_COPYRIGHT
|
|
VALUE "OriginalFilename", ORIGINAL_FILE_NAME
|
|
VALUE "ProductName", PRODUCT_NAME
|
|
VALUE "ProductVersion", PRODUCT_VERSION_STR
|
|
END
|
|
END
|
|
BLOCK "VarFileInfo"
|
|
BEGIN
|
|
VALUE "Translation", 0x804, 1200
|
|
END
|
|
END
|