Skip to content

Commit

Permalink
win32: set the proper libvlc version in the DLL
Browse files Browse the repository at this point in the history
  • Loading branch information
robUx4 committed Dec 7, 2022
1 parent 5157650 commit 32160df
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions lib/libvlc_win32_rc.rc.in
Original file line number Diff line number Diff line change
@@ -1,13 +1,15 @@
#define VERSION_NUMBER @VERSION_MAJOR@,@VERSION_MINOR@,@VERSION_REVISION@,@VERSION_EXTRA@
#define VERSION_NUMBER_STR "@VERSION_MAJOR@,@VERSION_MINOR@,@VERSION_REVISION@,@VERSION_EXTRA@"
#define LIBVLC_VERSION_NUMBER @LIBVLC_ABI_MAJOR@,@LIBVLC_ABI_MINOR@,@LIBVLC_ABI_MICRO@
#define LIBVLC_VERSION_NUMBER_STR "@LIBVLC_ABI_MAJOR@,@LIBVLC_ABI_MINOR@,@LIBVLC_ABI_MICRO@"

#include <winuser.h>

1 VERSIONINFO
FILETYPE 2
FILEOS 4
PRODUCTVERSION VERSION_NUMBER
FILEVERSION VERSION_NUMBER
FILEVERSION LIBVLC_VERSION_NUMBER
BEGIN
BLOCK "StringFileInfo"
BEGIN
Expand All @@ -16,7 +18,7 @@ BEGIN
VALUE "CompanyName", "VideoLAN"
VALUE "ProductName", "VLC media player"
VALUE "ProductVersion", VERSION_NUMBER_STR
VALUE "FileVersion", "@VERSION@"
VALUE "FileVersion", LIBVLC_VERSION_NUMBER_STR
VALUE "FileDescription", "VLC media player"
VALUE "LegalCopyright", "Copyright \251 @COPYRIGHT_YEARS@ VideoLAN and VLC Authors"
VALUE "LegalTrademarks", "VLC media player, VideoLAN and x264 are registered trademarks from VideoLAN"
Expand Down

0 comments on commit 32160df

Please sign in to comment.