Blame src/win32/git2.rc

Packit Service 20376f
#include <winver.h>
Packit Service 20376f
#include "../../include/git2/version.h"
Packit Service 20376f
Packit Service 20376f
#ifndef LIBGIT2_FILENAME
Packit Service 20376f
# define LIBGIT2_FILENAME "git2"
Packit Service 20376f
#endif
Packit Service 20376f
Packit Service 20376f
#ifndef LIBGIT2_COMMENTS
Packit Service 20376f
# define LIBGIT2_COMMENTS "For more information visit http://libgit2.github.com/"
Packit Service 20376f
#endif
Packit Service 20376f
Packit Service 20376f
VS_VERSION_INFO		VERSIONINFO	MOVEABLE IMPURE LOADONCALL DISCARDABLE
Packit Service 20376f
  FILEVERSION		LIBGIT2_VER_MAJOR,LIBGIT2_VER_MINOR,LIBGIT2_VER_REVISION,LIBGIT2_VER_PATCH
Packit Service 20376f
  PRODUCTVERSION	LIBGIT2_VER_MAJOR,LIBGIT2_VER_MINOR,LIBGIT2_VER_REVISION,LIBGIT2_VER_PATCH
Packit Service 20376f
  FILEFLAGSMASK		VS_FFI_FILEFLAGSMASK
Packit Service 20376f
#ifdef _DEBUG
Packit Service 20376f
  FILEFLAGS		VS_FF_DEBUG
Packit Service 20376f
#else
Packit Service 20376f
  FILEFLAGS		0
Packit Service 20376f
#endif
Packit Service 20376f
  FILEOS		VOS_NT_WINDOWS32
Packit Service 20376f
  FILETYPE		VFT_DLL
Packit Service 20376f
  FILESUBTYPE	VFT2_UNKNOWN
Packit Service 20376f
BEGIN
Packit Service 20376f
  BLOCK "StringFileInfo"
Packit Service 20376f
  BEGIN
Packit Service 20376f
    BLOCK "040904E4"
Packit Service 20376f
    //language ID = U.S. English, char set = Windows, Multilingual
Packit Service 20376f
    BEGIN
Packit Service 20376f
      VALUE "FileDescription",	"libgit2 - the Git linkable library\0"
Packit Service 20376f
      VALUE "FileVersion",	LIBGIT2_VERSION "\0"
Packit Service 20376f
      VALUE "InternalName",	LIBGIT2_FILENAME ".dll\0"
Packit Service 20376f
      VALUE "LegalCopyright",	"Copyright (C) the libgit2 contributors. All rights reserved.\0"
Packit Service 20376f
      VALUE "OriginalFilename",	LIBGIT2_FILENAME ".dll\0"
Packit Service 20376f
      VALUE "ProductName",	"libgit2\0"
Packit Service 20376f
      VALUE "ProductVersion",	LIBGIT2_VERSION "\0"
Packit Service 20376f
      VALUE "Comments",		LIBGIT2_COMMENTS "\0"
Packit Service 20376f
    END
Packit Service 20376f
  END
Packit Service 20376f
  BLOCK "VarFileInfo"
Packit Service 20376f
  BEGIN
Packit Service 20376f
    VALUE "Translation", 0x0409, 1252
Packit Service 20376f
  END
Packit Service 20376f
END