File: Compiler_ver.rc

package info (click to toggle)
teckit 2.5.13%2Bds-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 8,352 kB
  • sloc: cpp: 48,249; sh: 5,340; ansic: 3,162; perl: 562; makefile: 194; java: 43; xml: 15
file content (42 lines) | stat: -rw-r--r-- 1,366 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
/*------------------------------------------------------------------------
Copyright (c) 2008-2016 SIL Global. All rights reserved.

Distributable under the terms of either the Common Public License or the
GNU Lesser General Public License, as specified in the LICENSING.txt file.
------------------------------------------------------------------------*/

// 
// Version
// 

#include "version_defs.h"

VS_VERSION_INFO VERSIONINFO
FILEVERSION    	VER_FILEVERSION
PRODUCTVERSION 	VER_PRODUCTVERSION
FILEFLAGSMASK  	VS_FFI_FILEFLAGSMASK
FILEFLAGS VER_DEBUG
FILEOS         	VOS__WINDOWS32
FILETYPE       	VFT_DLL
FILESUBTYPE    	VFT2_UNKNOWN
BEGIN
    BLOCK "StringFileInfo"
    BEGIN
        BLOCK "040904b0"
        BEGIN
            VALUE "Comments", "TECkit mapping compiler library\0"
            VALUE "CompanyName", VER_COMPANY_NAME_STR
            VALUE "FileDescription", "TECkit mapping compiler library\0"
            VALUE "FileVersion", VER_FILEVERSION_STR
            VALUE "InternalName", "TECkit_Compiler_x86\0"
            VALUE "LegalCopyright", VER_COPYRIGHT_STR
            VALUE "OriginalFilename", "TECkit_Compiler_x86.dll\0"
            VALUE "ProductName", VER_PRODUCT_NAME_STR
            VALUE "ProductVersion", VER_PRODUCTVERSION_STR
        END
    END
    BLOCK "VarFileInfo"
    BEGIN
        VALUE "Translation", 0x409, 1200
    END
END