make the resource files not be raylib specific

This commit is contained in:
Jeffery Myers
2025-05-18 17:58:08 -07:00
parent eee8b1e8ce
commit 41931dbb6c
2 changed files with 9 additions and 9 deletions

27
src/application.rc Normal file
View File

@@ -0,0 +1,27 @@
GLFW_ICON ICON "icon.ico"
1 VERSIONINFO
FILEVERSION 1,0,0,0
PRODUCTVERSION 1,0,0,0
BEGIN
BLOCK "StringFileInfo"
BEGIN
//BLOCK "080904E4" // English UK
BLOCK "040904E4" // English US
BEGIN
//VALUE "CompanyName", "raylib technologies"
VALUE "FileDescription", "A cool game made with raylib (www.raylib.com)"
VALUE "FileVersion", "1.0.0"
VALUE "InternalName", "cool game"
VALUE "LegalCopyright", "(c) 2025 YOUR NAME"
//VALUE "OriginalFilename", "raylib_app"
VALUE "ProductName", "A cool game"
VALUE "ProductVersion", "1.0.0"
END
END
BLOCK "VarFileInfo"
BEGIN
//VALUE "Translation", 0x809, 1252 // English UK
VALUE "Translation", 0x409, 1252 // English US
END
END