mpd/win32/res/mpd.rc.in
Max Kellermann 94592c1406 build with Meson instead of autotools
So long, autotools!  This is my last MPD related project to migrate
away from it.  It has its strengths, but also very obvious weaknesses
and weirdnesses.  Today, many of its quirks are not needed anymore,
and are cumbersome and slow.  Now welcome our new Meson overlords!
2018-10-14 23:41:38 +02:00

35 lines
890 B
Plaintext

#include <windows.h>
#define VERSION_NUMBER @VERSION_MAJOR@,@VERSION_MINOR@,@VERSION_REVISION@,@VERSION_EXTRA@
#define VERSION_NUMBER_STR "@VERSION_MAJOR@,@VERSION_MINOR@,@VERSION_REVISION@,@VERSION_EXTRA@"
MPD_ICON ICON "@srcdir@/mpd.ico"
1 VERSIONINFO
FILETYPE VFT_APP
FILEOS VOS__WINDOWS32
PRODUCTVERSION VERSION_NUMBER
FILEVERSION VERSION_NUMBER
BEGIN
BLOCK "StringFileInfo"
BEGIN
BLOCK "040904B0"
BEGIN
VALUE "CompanyName", "Music Player Daemon Project"
VALUE "ProductName", "Music Player Daemon"
VALUE "ProductVersion", VERSION_NUMBER_STR
VALUE "InternalName", "mpd"
VALUE "OriginalFilename", "mpd.exe"
VALUE "FileVersion", "@VERSION@"
VALUE "FileDescription", "Music Player Daemon @VERSION@"
VALUE "LegalCopyright", "Copyright \251 The Music Player Daemon Project"
END
END
BLOCK "VarFileInfo"
BEGIN
VALUE "Translation", 0x409, 1200
END
END