OpenCanopy.inf 2.0 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
## @file
#  General purpose test application.
#
#  Copyright (c) 2019, vit9696. All rights reserved.<BR>
#
#  This program and the accompanying materials
#  are licensed and made available under the terms and conditions of the BSD License
#  which accompanies this distribution.  The full text of the license may be found at
#  http://opensource.org/licenses/bsd-license.php
#  THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
#  WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
#
##

[Defines]
  INF_VERSION                         = 0x00010005
V
vit9696 已提交
17
  BASE_NAME                           = OpenCanopy
18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
  FILE_GUID                           = A72DCBF9-388A-47FE-B13A-591716F70609
  MODULE_TYPE                         = UEFI_DRIVER
  VERSION_STRING                      = 1.0
  INF_VERSION                         = 0x00010005
  EDK_RELEASE_VERSION                 = 0x00020000
  EFI_SPECIFICATION_VERSION           = 0x00010000
  ENTRY_POINT                         = UefiMain

#
# The following information is for reference only and not required by the build tools.
#
#  VALID_ARCHITECTURES           = IA32 X64 IPF EBC
#

[Sources]
  BitmapFont.c
V
vit9696 已提交
34 35
  BmfFile.h
  BmfLib.h
V
vit9696 已提交
36 37
  OpenCanopy.c
  OpenCanopy.h
38 39 40 41 42 43
  GuiApp.c
  GuiApp.h
  GuiIo.h
  Input/InputSimAbsPtr.c
  Input/InputSimTextIn.c
  OcBootstrap.c
V
vit9696 已提交
44
  Output/OutputStGop.c
45 46 47 48 49 50 51 52
  Views/BootPicker.c

[Packages]
  OpenCorePkg/OpenCorePkg.dec
  MdePkg/MdePkg.dec
  MdeModulePkg/MdeModulePkg.dec
  UefiCpuPkg/UefiCpuPkg.dec

53 54 55
[Guids]
  gAppleVendorVariableGuid

56 57 58 59
[Protocols]
  gEfiGraphicsOutputProtocolGuid
  gEfiSimplePointerProtocolGuid
  gEfiAbsolutePointerProtocolGuid
60
  gEfiUserInterfaceThemeProtocolGuid
61
  gAppleEventProtocolGuid
62 63 64 65 66 67 68 69 70
  gOcInterfaceProtocolGuid
  gEfiLoadedImageProtocolGuid

[LibraryClasses]
  BaseLib
  BaseMemoryLib
  DebugLib
  FrameBufferBltLib
  MemoryAllocationLib
71
  MtrrLib
72
  OcAppleKeyMapLib
73
  OcCompressionLib
74
  OcGuardLib
75
  OcMiscLib
76 77
  OcPngLib
  OcStorageLib
78
  TimerLib
79 80
  UefiBootServicesTableLib
  UefiDriverEntryPoint