2009-03-01 13:13:25 +00:00
|
|
|
/*
|
2015-04-13 07:36:54 +00:00
|
|
|
* This file is part of mpv.
|
2009-03-01 13:13:25 +00:00
|
|
|
*
|
2017-06-12 15:06:03 +00:00
|
|
|
* mpv is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
2009-03-01 13:13:25 +00:00
|
|
|
*
|
2015-04-13 07:36:54 +00:00
|
|
|
* mpv is distributed in the hope that it will be useful,
|
2009-03-01 13:13:25 +00:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
2017-06-12 15:06:03 +00:00
|
|
|
* GNU Lesser General Public License for more details.
|
2009-03-01 13:13:25 +00:00
|
|
|
*
|
2017-06-12 15:06:03 +00:00
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with mpv. If not, see <http://www.gnu.org/licenses/>.
|
2009-03-01 13:13:25 +00:00
|
|
|
*/
|
2003-04-20 13:06:27 +00:00
|
|
|
|
2009-07-06 23:26:13 +00:00
|
|
|
#include <winver.h>
|
2019-06-21 22:03:31 +00:00
|
|
|
#include "generated/version.h"
|
2003-04-20 13:06:27 +00:00
|
|
|
|
2016-07-12 11:05:33 +00:00
|
|
|
VS_VERSION_INFO VERSIONINFO
|
|
|
|
FILEVERSION 2, 0, 0, 0
|
|
|
|
PRODUCTVERSION 2, 0, 0, 0
|
|
|
|
FILEFLAGSMASK VS_FFI_FILEFLAGSMASK
|
|
|
|
FILEFLAGS 0
|
|
|
|
FILEOS VOS__WINDOWS32
|
|
|
|
FILETYPE VFT_APP
|
|
|
|
FILESUBTYPE 0
|
|
|
|
{
|
|
|
|
BLOCK "StringFileInfo" {
|
|
|
|
BLOCK "000004b0" {
|
|
|
|
VALUE "Comments", "mpv is distributed under the terms of the GNU General Public License Version 2 or later."
|
|
|
|
VALUE "CompanyName", "mpv"
|
|
|
|
VALUE "FileDescription", "mpv"
|
2018-01-01 21:44:01 +00:00
|
|
|
VALUE "FileVersion", VERSION
|
2018-01-01 11:16:42 +00:00
|
|
|
VALUE "LegalCopyright", MPVCOPYRIGHT
|
2016-07-12 11:05:33 +00:00
|
|
|
VALUE "OriginalFilename", "mpv.exe"
|
|
|
|
VALUE "ProductName", "mpv"
|
2018-01-01 21:44:01 +00:00
|
|
|
VALUE "ProductVersion", VERSION
|
2016-07-12 11:05:33 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
BLOCK "VarFileInfo" {
|
|
|
|
VALUE "Translation", 0, 1200
|
|
|
|
}
|
|
|
|
}
|
2003-04-20 13:06:27 +00:00
|
|
|
|
2013-07-30 14:04:01 +00:00
|
|
|
IDI_ICON1 ICON DISCARDABLE "etc/mpv-icon.ico"
|
2010-07-04 07:13:18 +00:00
|
|
|
|
|
|
|
// for some reason RT_MANIFEST does not work
|
2012-10-11 00:04:08 +00:00
|
|
|
1 24 "mpv.exe.manifest"
|