Home | History | Annotate | Download | only in base
      1 /***************************************************************************/
      2 /*                                                                         */
      3 /*  ftver.rc                                                               */
      4 /*                                                                         */
      5 /*    FreeType VERSIONINFO resource for Windows DLLs.                      */
      6 /*                                                                         */
      7 /*  Copyright 2018 by                                                      */
      8 /*  David Turner, Robert Wilhelm, and Werner Lemberg.                      */
      9 /*                                                                         */
     10 /*  This file is part of the FreeType project, and may only be used,       */
     11 /*  modified, and distributed under the terms of the FreeType project      */
     12 /*  license, LICENSE.TXT.  By continuing to use, modify, or distribute     */
     13 /*  this file you indicate that you have read the license and              */
     14 /*  understand and accept it fully.                                        */
     15 /*                                                                         */
     16 /***************************************************************************/
     17 
     18 
     19 #include<windows.h>
     20 
     21 #define FT_VERSION      2,9,0,0
     22 #define FT_VERSION_STR  "2.9.0"
     23 
     24 VS_VERSION_INFO      VERSIONINFO
     25 FILEVERSION          FT_VERSION
     26 PRODUCTVERSION       FT_VERSION
     27 FILEFLAGSMASK        VS_FFI_FILEFLAGSMASK
     28 #ifdef _DEBUG
     29 FILEFLAGS            VS_FF_DEBUG
     30 #endif
     31 #ifdef _DLL
     32 FILETYPE             VFT_DLL
     33 #define FT_FILENAME  "freetype.dll"
     34 #else
     35 FILETYPE             VFT_STATIC_LIB
     36 #define FT_FILENAME  "freetype.lib"
     37 #endif
     38 BEGIN
     39   BLOCK "StringFileInfo"
     40   BEGIN
     41     BLOCK "040904E4"
     42     BEGIN
     43       VALUE "CompanyName",      "The FreeType Project"
     44       VALUE "FileDescription",  "Font Rendering Library"
     45       VALUE "FileVersion",      FT_VERSION_STR
     46       VALUE "ProductName",      "FreeType"
     47       VALUE "ProductVersion",   FT_VERSION_STR
     48       VALUE "LegalCopyright",   "\251 2018 The FreeType Project www.freetype.org. All rights reserved."
     49       VALUE "InternalName",     "freetype"
     50       VALUE "OriginalFilename", FT_FILENAME
     51     END
     52   END
     53 
     54   BLOCK "VarFileInfo"
     55   BEGIN
     56     /* The following line should only be modified for localized versions.  */
     57     /* It consists of any number of WORD,WORD pairs, with each pair        */
     58     /* describing a "language,codepage" combination supported by the file. */
     59     VALUE "Translation", 0x409, 1252
     60   END
     61 END
     62