diff options
author | Bernd Wachter <bwachter-tmw@lart.info> | 2010-01-23 21:56:45 +0100 |
---|---|---|
committer | Thorbjørn Lindeijer <thorbjorn@lindeijer.nl> | 2010-01-31 17:45:38 +0100 |
commit | cf85e1fc67900ac79ac18413a19878ae5e608b4d (patch) | |
tree | 44a2f8be20076d52dab9e6554889e84d5ca3c3fe /src/mana-ea.rc | |
parent | a39e10b8323d3f26e3eaddb83568f1854170210d (diff) | |
download | mana-client-cf85e1fc67900ac79ac18413a19878ae5e608b4d.tar.gz mana-client-cf85e1fc67900ac79ac18413a19878ae5e608b4d.tar.bz2 mana-client-cf85e1fc67900ac79ac18413a19878ae5e608b4d.tar.xz mana-client-cf85e1fc67900ac79ac18413a19878ae5e608b4d.zip |
Add win32 rc handling to cmake; fix icon path
Diffstat (limited to 'src/mana-ea.rc')
-rw-r--r-- | src/mana-ea.rc | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/src/mana-ea.rc b/src/mana-ea.rc new file mode 100644 index 00000000..12068ea2 --- /dev/null +++ b/src/mana-ea.rc @@ -0,0 +1,23 @@ +#include <windows.h> // include for version info constants + +#include "winver.h" + +A ICON MOVEABLE PURE LOADONCALL DISCARDABLE "../data/icons/mana.ico" + +1 VERSIONINFO +FILEVERSION VER_MAJOR,VER_MINOR,VER_RELEASE,VER_BUILD +PRODUCTVERSION VER_MAJOR,VER_MINOR,VER_RELEASE,VER_BUILD +//FILETYPE VFT_APP +{ + BLOCK "StringFileInfo" { + BLOCK "040904E4" { + VALUE "CompanyName", "The Mana Development Team" + VALUE "FileVersion", PACKAGE_VERSION + VALUE "FileDescription", "Mana (Eathena)" + VALUE "LegalCopyright", "2004-2010 (C)" + VALUE "OriginalFilename", "mana-ea.exe" + VALUE "ProductName", "Mana MMORPG Client" + VALUE "ProductVersion", PACKAGE_VERSION + } + } +} |