cmake/Utilities/cmcurl/lib/libcurl.rc

66 lines
2.2 KiB
Plaintext
Raw Normal View History

2015-04-27 22:25:09 +02:00
/***************************************************************************
* _ _ ____ _
* Project ___| | | | _ \| |
* / __| | | | |_) | |
* | (__| |_| | _ <| |___
* \___|\___/|_| \_\_____|
*
2023-07-02 19:51:09 +02:00
* Copyright (C) Daniel Stenberg, <daniel@haxx.se>, et al.
2015-04-27 22:25:09 +02:00
*
* This software is licensed as described in the file COPYING, which
* you should have received as part of this distribution. The terms
2021-09-14 00:13:48 +02:00
* are also available at https://curl.se/docs/copyright.html.
2015-04-27 22:25:09 +02:00
*
* You may opt to use, copy, modify, merge, publish, distribute and/or sell
* copies of the Software, and permit persons to whom the Software is
* furnished to do so, under the terms of the COPYING file.
*
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
* KIND, either express or implied.
*
2022-11-16 20:14:03 +01:00
* SPDX-License-Identifier: curl
*
2015-04-27 22:25:09 +02:00
***************************************************************************/
#include <winver.h>
#include "../include/curl/curlver.h"
2019-11-11 23:01:05 +01:00
LANGUAGE 0, 0
2015-04-27 22:25:09 +02:00
#define RC_VERSION LIBCURL_VERSION_MAJOR, LIBCURL_VERSION_MINOR, LIBCURL_VERSION_PATCH, 0
VS_VERSION_INFO VERSIONINFO
FILEVERSION RC_VERSION
PRODUCTVERSION RC_VERSION
2019-11-11 23:01:05 +01:00
FILEFLAGSMASK VS_FFI_FILEFLAGSMASK
2024-11-11 15:18:55 +01:00
#if defined(DEBUGBUILD) || defined(UNITTESTS) || defined(CURLDEBUG) || defined(_DEBUG)
2019-11-11 23:01:05 +01:00
FILEFLAGS VS_FF_DEBUG
2015-04-27 22:25:09 +02:00
#else
2019-11-11 23:01:05 +01:00
FILEFLAGS 0L
2015-04-27 22:25:09 +02:00
#endif
FILEOS VOS__WINDOWS32
FILETYPE VFT_DLL
2019-11-11 23:01:05 +01:00
FILESUBTYPE 0L
2015-04-27 22:25:09 +02:00
BEGIN
BLOCK "StringFileInfo"
BEGIN
BLOCK "040904b0"
BEGIN
2021-09-14 00:13:48 +02:00
VALUE "CompanyName", "The curl library, https://curl.se/\0"
2015-04-27 22:25:09 +02:00
VALUE "FileDescription", "libcurl Shared Library\0"
VALUE "FileVersion", LIBCURL_VERSION "\0"
VALUE "InternalName", "libcurl\0"
VALUE "OriginalFilename", "libcurl.dll\0"
2017-04-14 19:02:05 +02:00
VALUE "ProductName", "The curl library\0"
2015-04-27 22:25:09 +02:00
VALUE "ProductVersion", LIBCURL_VERSION "\0"
2022-03-29 21:10:50 +02:00
VALUE "LegalCopyright", "Copyright (C) " LIBCURL_COPYRIGHT "\0"
2021-09-14 00:13:48 +02:00
VALUE "License", "https://curl.se/docs/copyright.html\0"
2015-04-27 22:25:09 +02:00
END
END
BLOCK "VarFileInfo"
BEGIN
VALUE "Translation", 0x409, 1200
END
END