]> git.proxmox.com Git - mirror_edk2.git/blob - NetworkPkg/Network.dsc.inc
CryptoPkg/OpensslLib: fix VS2017 build failure
[mirror_edk2.git] / NetworkPkg / Network.dsc.inc
1 ## @file
2 # Network DSC include file for Platform DSC
3 #
4 # This file includes all required information to enable Network features.
5 # It can be included to a platform DSC file by using "!include NetworkPkg/Network.dsc.inc".
6 #
7 # This file defines one build flag PLATFORMX64_ENABLE to support
8 # IA32 PEI and X64 DXE platform. Its default value is FALSE.
9 #
10 # Copyright (c) 2019, Intel Corporation. All rights reserved.<BR>
11 #
12 # SPDX-License-Identifier: BSD-2-Clause-Patent
13 #
14 ##
15
16 [Defines]
17 !include NetworkPkg/NetworkDefines.dsc.inc
18
19 !ifndef PLATFORMX64_ENABLE
20 #
21 # PLATFORMX64_ENABLE is set to TRUE when PEI is IA32 and DXE is X64 platform
22 #
23 DEFINE PLATFORMX64_ENABLE = FALSE
24 !endif
25
26 [PcdsFixedAtBuild]
27 !include NetworkPkg/NetworkPcds.dsc.inc
28
29 [LibraryClasses]
30 !include NetworkPkg/NetworkLibs.dsc.inc
31
32 !if $(PLATFORMX64_ENABLE) == TRUE
33 [Components.X64]
34 !include NetworkPkg/NetworkComponents.dsc.inc
35
36 !else
37 [Components.IA32, Components.X64, Components.ARM, Components.AARCH64]
38 !include NetworkPkg/NetworkComponents.dsc.inc
39
40 !endif