Add RC file
This commit is contained in:
parent
677e0db636
commit
44dd54051c
|
@ -0,0 +1,36 @@
|
|||
#include <winver.h>
|
||||
#include "rcVersion.h"
|
||||
|
||||
VS_VERSION_INFO VERSIONINFO
|
||||
FILEVERSION LIBMINIUPNPC_MAJOR_VERSION,LIBMINIUPNPC_MINOR_VERSION,LIBMINIUPNPC_MICRO_VERSION,0
|
||||
PRODUCTVERSION LIBMINIUPNPC_MAJOR_VERSION,LIBMINIUPNPC_MINOR_VERSION,LIBMINIUPNPC_MICRO_VERSION,0
|
||||
FILEFLAGSMASK VS_FFI_FILEFLAGSMASK
|
||||
#ifdef _DEBUG
|
||||
FILEFLAGS VS_FF_DEBUG
|
||||
#else
|
||||
FILEFLAGS 0
|
||||
#endif
|
||||
FILEOS VOS__WINDOWS32
|
||||
FILETYPE VFT_DLL
|
||||
FILESUBTYPE VFT2_UNKNOWN // not used
|
||||
BEGIN
|
||||
BLOCK "StringFileInfo"
|
||||
BEGIN
|
||||
BLOCK "04090000" /* Lang = US English, Charset = ASCII */
|
||||
BEGIN
|
||||
VALUE "FileDescription", "MiniUPnP library\0"
|
||||
VALUE "FileVersion", LIBMINIUPNPC_DOTTED_VERSION "\0"
|
||||
VALUE "InternalName", INTERNAL_NAME
|
||||
VALUE "LegalCopyright", "Copyright (C) Thomas Bernard\0"
|
||||
VALUE "LegalTrademarks", "\0"
|
||||
VALUE "OriginalFilename", INTERNAL_NAME
|
||||
VALUE "ProductName", "MiniUPnP\0"
|
||||
VALUE "ProductVersion", LIBMINIUPNPC_DOTTED_VERSION "\0"
|
||||
VALUE "Comments", "For more information visit http://xmlsoft.org/\0"
|
||||
END
|
||||
END
|
||||
BLOCK "VarFileInfo"
|
||||
BEGIN
|
||||
VALUE "Translation", 0x0409, 0 /* US English, ASCII */
|
||||
END
|
||||
END
|
|
@ -184,10 +184,14 @@
|
|||
<ClInclude Include="..\upnperrors.h" />
|
||||
<ClInclude Include="..\upnpreplyparse.h" />
|
||||
<ClInclude Include="..\win32_snprintf.h" />
|
||||
<ClInclude Include="rcVersion.h" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="genminiupnpcstrings.vbs" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ResourceCompile Include="miniupnpc.rc" />
|
||||
</ItemGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
||||
<ImportGroup Label="ExtensionTargets">
|
||||
</ImportGroup>
|
||||
|
|
|
@ -180,10 +180,14 @@
|
|||
<ClInclude Include="..\upnperrors.h" />
|
||||
<ClInclude Include="..\upnpreplyparse.h" />
|
||||
<ClInclude Include="..\win32_snprintf.h" />
|
||||
<ClInclude Include="rcVersion.h" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="genminiupnpcstrings.vbs" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ResourceCompile Include="miniupnpc.rc" />
|
||||
</ItemGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
||||
<ImportGroup Label="ExtensionTargets">
|
||||
</ImportGroup>
|
||||
|
|
|
@ -0,0 +1,4 @@
|
|||
#define LIBMINIUPNPC_MAJOR_VERSION 2
|
||||
#define LIBMINIUPNPC_MINOR_VERSION 2
|
||||
#define LIBMINIUPNPC_MICRO_VERSION 0
|
||||
#define LIBMINIUPNPC_DOTTED_VERSION "2.2.0"
|
Loading…
Reference in New Issue