mirror of https://github.com/acidanthera/audk.git
DynamicTablesPkg: Fix missing local header warning
The edk2 BaseTools report a warning if a local header file is not listed under the [Sources] section in the INF file. Add header files to the [Sources] section in the respective INF files to fix the warnings. Signed-off-by: Sami Mujawar <sami.mujawar@arm.com> Reviewed-by: Alexei Fedorov <Alexei.Fedorov@arm.com> Reviewed-by: Philippe Mathieu-Daude <philmd@redhat.com>
This commit is contained in:
parent
43a0e08d02
commit
f291a581ac
|
@ -25,6 +25,7 @@
|
|||
DeviceTreeTableFactory/DeviceTreeTableFactory.c
|
||||
DynamicTableFactoryDxe.c
|
||||
SmbiosTableFactory/SmbiosTableFactory.c
|
||||
DynamicTableFactory.h
|
||||
|
||||
[Packages]
|
||||
MdePkg/MdePkg.dec
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
## @file
|
||||
# IORT Table Generator
|
||||
#
|
||||
# Copyright (c) 2017 - 2018, ARM Limited. All rights reserved.
|
||||
# Copyright (c) 2017 - 2019, ARM Limited. All rights reserved.
|
||||
#
|
||||
# SPDX-License-Identifier: BSD-2-Clause-Patent
|
||||
##
|
||||
|
@ -18,6 +18,7 @@
|
|||
|
||||
[Sources]
|
||||
IortGenerator.c
|
||||
IortGenerator.h
|
||||
|
||||
[Packages]
|
||||
MdePkg/MdePkg.dec
|
||||
|
|
|
@ -18,6 +18,7 @@
|
|||
|
||||
[Sources]
|
||||
PpttGenerator.c
|
||||
PpttGenerator.h
|
||||
|
||||
[Packages]
|
||||
EmbeddedPkg/EmbeddedPkg.dec
|
||||
|
|
Loading…
Reference in New Issue