mirror of https://github.com/acidanthera/audk.git
44 lines
1017 B
INI
44 lines
1017 B
INI
## @file
|
|
# Redfish HTTP library is wrapper library for application to call Redfish
|
|
# HTTP protocol easily.
|
|
#
|
|
# Copyright (c) 2023-2024, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
|
|
#
|
|
# SPDX-License-Identifier: BSD-2-Clause-Patent
|
|
#
|
|
##
|
|
|
|
[Defines]
|
|
INF_VERSION = 0x00010006
|
|
BASE_NAME = RedfishHttpLib
|
|
FILE_GUID = 62855D9B-441B-436B-9CA6-B7FEB7ABF54E
|
|
MODULE_TYPE = DXE_DRIVER
|
|
VERSION_STRING = 1.0
|
|
LIBRARY_CLASS = RedfishHttpLib| DXE_DRIVER UEFI_DRIVER
|
|
CONSTRUCTOR = RedfishHttpConstructor
|
|
|
|
#
|
|
# VALID_ARCHITECTURES = IA32 X64 EBC
|
|
#
|
|
|
|
[Sources]
|
|
RedfishHttpLib.c
|
|
|
|
[Packages]
|
|
MdePkg/MdePkg.dec
|
|
MdeModulePkg/MdeModulePkg.dec
|
|
RedfishPkg/RedfishPkg.dec
|
|
|
|
[LibraryClasses]
|
|
BaseLib
|
|
DebugLib
|
|
UefiLib
|
|
UefiBootServicesTableLib
|
|
|
|
[Protocols]
|
|
gEdkIIRedfishHttpProtocolGuid ## CONSUMES ##
|
|
|
|
[depex]
|
|
TRUE
|
|
|