blob: 58e439d3b891cb5618940d83ca1534c2a6a23fcf [file] [log] [blame]
9487f7f2011-08-03 07:05:30 -07001/***************************************************************************
2 * _ _ ____ _
3 * Project ___| | | | _ \| |
4 * / __| | | | |_) | |
5 * | (__| |_| | _ <| |___
6 * \___|\___/|_| \_\_____|
7 *
8 * Copyright (C) 1998 - 2009, Daniel Stenberg, <daniel@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 http://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 "version.h"
24
25LANGUAGE 0x09,0x01
26
27#define RC_VERSION CURL_VERSION_MAJOR, CURL_VERSION_MINOR, CURL_VERSION_PATCH, 0
28
29VS_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
42BEGIN
43 BLOCK "StringFileInfo"
44 BEGIN
45 BLOCK "040904b0"
46 BEGIN
47 VALUE "CompanyName", "cURL, http://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", "© " CURL_COPYRIGHT "\0"
55 VALUE "License", "http://curl.haxx.se/docs/copyright.html\0"
56 END
57 END
58
59 BLOCK "VarFileInfo"
60 BEGIN
61 VALUE "Translation", 0x409, 1200
62 END
63END