Home | History | Annotate | Download | only in mini_installer
      1 /////////////////////////////////////////////////////////////////////////////
      2 //
      3 // Version
      4 //
      5 
      6 // Use the ordinal 1 here, to avoid needing to #include a header file
      7 // to use the VS_VERSION_INFO macro. This header file changes with different
      8 // SDK versions which causes headaches building in some environments. The
      9 // VERSIONINFO resource will always be at index 1.
     10 1 VERSIONINFO
     11  FILEVERSION @MAJOR@,@MINOR@,@BUILD@,@PATCH@
     12  PRODUCTVERSION @MAJOR@,@MINOR@,@BUILD@,@PATCH@
     13  FILEFLAGSMASK 0x17L
     14 #ifdef _DEBUG
     15  FILEFLAGS 0x1L
     16 #else
     17  FILEFLAGS 0x0L
     18 #endif
     19  FILEOS 0x4L
     20  FILETYPE 0x1L
     21  FILESUBTYPE 0x0L
     22 BEGIN
     23     BLOCK "StringFileInfo"
     24     BEGIN
     25         BLOCK "040904b0"
     26         BEGIN
     27             VALUE "CompanyName", "@COMPANY_FULLNAME@"
     28             VALUE "FileDescription", "@PRODUCT_FULLNAME@"
     29             VALUE "FileVersion", "@MAJOR@.@MINOR@.@BUILD@.@PATCH@"
     30             VALUE "InternalName", "mini_installer"
     31             VALUE "LegalCopyright", "@COPYRIGHT@"
     32             VALUE "ProductName", "@PRODUCT_FULLNAME@"
     33             VALUE "ProductVersion", "@MAJOR@.@MINOR@.@BUILD@.@PATCH@"
     34             VALUE "CompanyShortName", "@COMPANY_SHORTNAME@"
     35             VALUE "ProductShortName", "@PRODUCT_SHORTNAME@"
     36             VALUE "LastChange", "@LASTCHANGE@"
     37             VALUE "Official Build", "@OFFICIAL_BUILD@"
     38         END
     39     END
     40     BLOCK "VarFileInfo"
     41     BEGIN
     42         VALUE "Translation", 0x409, 1200
     43     END
     44 END
     45