-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adds an icon and version info. Signed-off-by: Artem Senichev <[email protected]>
- Loading branch information
Showing
3 changed files
with
57 additions
and
6 deletions.
There are no files selected for viewing
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
// SPDX-License-Identifier: MIT | ||
// Resource file for MS Windows. | ||
// Copyright (C) 2024 Artem Senichev <[email protected]> | ||
|
||
#include <windows.h> | ||
#include "buildcfg.h" | ||
|
||
0 ICON "pipewalker.ico" | ||
LANGUAGE 0, SUBLANG_NEUTRAL | ||
1 VERSIONINFO | ||
FILEVERSION APP_VERSION_MAJOR,APP_VERSION_MINOR,APP_VERSION_PATCH | ||
PRODUCTVERSION APP_VERSION_MAJOR,APP_VERSION_MINOR,APP_VERSION_PATCH | ||
FILEOS VOS__WINDOWS32 | ||
FILEFLAGSMASK VFT2_UNKNOWN | ||
FILETYPE VFT_UNKNOWN | ||
BEGIN | ||
BLOCK "StringFileInfo" | ||
BEGIN | ||
BLOCK "000004b0" | ||
BEGIN | ||
VALUE "FileDescription", "PipeWalker game" | ||
VALUE "FileVersion", APP_VERSION | ||
VALUE "InternalName", "PipeWalker" | ||
VALUE "LegalCopyright", "Copyright (C) 2007-2024 Artem Senichev" | ||
VALUE "OriginalFilename", "PipeWalker.exe" | ||
VALUE "ProductName", "PipeWalker game" | ||
VALUE "ProductVersion", APP_VERSION | ||
END | ||
END | ||
BLOCK "VarFileInfo" | ||
BEGIN | ||
VALUE "Translation", 0x0, 1200 | ||
END | ||
END |