Home | History | Annotate | Download | only in src
      1 /***************************************************************************
      2  *                                  _   _ ____  _
      3  *  Project                     ___| | | |  _ \| |
      4  *                             / __| | | | |_) | |
      5  *                            | (__| |_| |  _ <| |___
      6  *                             \___|\___/|_| \_\_____|
      7  *
      8  * Copyright (C) 1998 - 2017, Daniel Stenberg, <daniel (at) haxx.se>, et al.
      9  *
     10  * This software is licensed as described in the file COPYING, which
     11  * you should have received as part of this distribution. The terms
     12  * are also available at https://curl.haxx.se/docs/copyright.html.
     13  *
     14  * You may opt to use, copy, modify, merge, publish, distribute and/or sell
     15  * copies of the Software, and permit persons to whom the Software is
     16  * furnished to do so, under the terms of the COPYING file.
     17  *
     18  * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
     19  * KIND, either express or implied.
     20  *
     21  ***************************************************************************/
     22 #include <winver.h>
     23 #include "tool_version.h"
     24 
     25 LANGUAGE  0x09,0x01
     26 
     27 #define RC_VERSION  CURL_VERSION_MAJOR, CURL_VERSION_MINOR, CURL_VERSION_PATCH, 0
     28 
     29 VS_VERSION_INFO VERSIONINFO
     30   FILEVERSION     RC_VERSION
     31   PRODUCTVERSION  RC_VERSION
     32   FILEFLAGSMASK   0x3fL
     33 #if defined(DEBUGBUILD) || defined(_DEBUG)
     34   FILEFLAGS 1
     35 #else
     36   FILEFLAGS 0
     37 #endif
     38   FILEOS      VOS__WINDOWS32
     39   FILETYPE    VFT_APP
     40   FILESUBTYPE 0x0L
     41 
     42 BEGIN
     43   BLOCK "StringFileInfo"
     44   BEGIN
     45     BLOCK "040904b0"
     46     BEGIN
     47       VALUE "CompanyName",      "curl, https://curl.haxx.se/\0"
     48       VALUE "FileDescription",  "The curl executable\0"
     49       VALUE "FileVersion",      CURL_VERSION "\0"
     50       VALUE "InternalName",     "curl\0"
     51       VALUE "OriginalFilename", "curl.exe\0"
     52       VALUE "ProductName",      "The curl executable\0"
     53       VALUE "ProductVersion",   CURL_VERSION "\0"
     54       VALUE "LegalCopyright",   "\xa9 " CURL_COPYRIGHT "\0"  /* a9: Copyright symbol */
     55       VALUE "License",          "https://curl.haxx.se/docs/copyright.html\0"
     56     END
     57   END
     58 
     59   BLOCK "VarFileInfo"
     60   BEGIN
     61     VALUE "Translation", 0x409, 1200
     62   END
     63 END
     64