mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-13 15:52:01 +07:00
42 lines
1.2 KiB
Plaintext
42 lines
1.2 KiB
Plaintext
// Copyright 2000-2022 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file.
|
|
// Modified by Dmitrij Pochepko at 2025 as part of the OpenIDE project (https://openide.ru).
|
|
// Any modifications are available on the same license terms as the original source code.
|
|
|
|
#define VERSION 1,0,0,@BUILD_NUMBER@
|
|
#define VERSION_STR "1.0.0.@BUILD_NUMBER@\0"
|
|
#define FILE_NAME "@FILE_NAME@.exe"
|
|
|
|
#pragma code_page(65001) // UTF-8
|
|
|
|
1 VERSIONINFO
|
|
FILEVERSION VERSION
|
|
PRODUCTVERSION VERSION
|
|
FILEFLAGSMASK 0x3fL
|
|
#ifdef _DEBUG
|
|
FILEFLAGS 0x1L
|
|
#else
|
|
FILEFLAGS 0x0L
|
|
#endif
|
|
FILEOS 0x4L // VOS_WINDOWS32
|
|
FILETYPE 0x1L // VFT_APP
|
|
FILESUBTYPE 0x0L
|
|
BEGIN
|
|
BLOCK "StringFileInfo"
|
|
BEGIN
|
|
BLOCK "0000fde9"
|
|
BEGIN
|
|
VALUE "CompanyName", "OpenIDE"
|
|
VALUE "FileDescription", "Windows Process List Helper utility"
|
|
VALUE "FileVersion", VERSION_STR
|
|
VALUE "InternalName", FILE_NAME
|
|
VALUE "OriginalFilename", FILE_NAME
|
|
VALUE "ProductName", "OpenIDE"
|
|
VALUE "ProductVersion", VERSION_STR
|
|
END
|
|
END
|
|
BLOCK "VarFileInfo"
|
|
BEGIN
|
|
VALUE "Translation", 0, 0xfde9
|
|
END
|
|
END
|