-
Notifications
You must be signed in to change notification settings - Fork 59
/
efi driver.props
69 lines (69 loc) · 3.86 KB
/
efi driver.props
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ImportGroup Label="PropertySheets" />
<PropertyGroup>
<GenerateManifest />
<IntDir>$(SolutionDir)$(Platform)\$(Configuration)\obj\$(TargetName)\</IntDir>
<OutDir>$(SolutionDir)$(Platform)\$(Configuration)\</OutDir>
<TargetExt>.efi</TargetExt>
</PropertyGroup>
<PropertyGroup>
<LocalDebuggerCommand>..\debugger\qemu.exe</LocalDebuggerCommand>
<LocalDebuggerCommandArguments>-name "VisualUEFI Debugger" -drive file=OVMF_CODE-need-smm.fd,if=pflash,format=raw,unit=0,readonly=on -drive file=OVMF_VARS-need-smm.fd,if=pflash,format=raw,unit=1 -drive file=fat:rw:..\samples\$(Platform)\$(Configuration)\,media=disk,if=virtio,format=raw -drive file=UefiShell.iso,format=raw -m 512 -machine q35,smm=on -nodefaults -vga std -global driver=cfi.pflash01,property=secure,value=on -global ICH9-LPC.disable_s3=1</LocalDebuggerCommandArguments>
<LocalDebuggerWorkingDirectory>..\..\debugger</LocalDebuggerWorkingDirectory>
<LocalDebuggerDebuggerType>Script</LocalDebuggerDebuggerType>
<DebuggerFlavor>WindowsLocalDebugger</DebuggerFlavor>
</PropertyGroup>
<ItemDefinitionGroup>
<ClCompile>
<WholeProgramOptimization>true</WholeProgramOptimization>
<WarningLevel>Level4</WarningLevel>
<TreatWarningAsError>true</TreatWarningAsError>
<MultiProcessorCompilation>true</MultiProcessorCompilation>
<Optimization>MinSpace</Optimization>
<IntrinsicFunctions>true</IntrinsicFunctions>
<OmitFramePointers>true</OmitFramePointers>
<InlineFunctionExpansion>AnySuitable</InlineFunctionExpansion>
<ExceptionHandling>SyncCThrow</ExceptionHandling>
<BufferSecurityCheck>false</BufferSecurityCheck>
<ControlFlowGuard>false</ControlFlowGuard>
<FunctionLevelLinking>true</FunctionLevelLinking>
<ForcedIncludeFiles>$(SolutionDir)..\VisualUefi\EDK-II\BaseLib\vshacks.h</ForcedIncludeFiles>
<CallingConvention />
<TreatWChar_tAsBuiltInType />
<StringPooling>true</StringPooling>
<RuntimeTypeInfo>false</RuntimeTypeInfo>
<ForceConformanceInForLoopScope />
<AdditionalOptions>/Gs32768 %(AdditionalOptions)</AdditionalOptions>
<ErrorReporting />
<FloatingPointModel />
</ClCompile>
<Link>
<IgnoreAllDefaultLibraries>true</IgnoreAllDefaultLibraries>
<AdditionalDependencies>UefiHiiLib.lib;UefiHiiServicesLib.lib;UefiSortLib.lib;UefiShellLib.lib;GlueLib.lib;BaseLib.lib;BaseDebugPrintErrorLevelLib.lib;BasePrintLib.lib;UefiLib.lib;UefiBootServicesTableLib.lib;UefiRuntimeServicesTableLib.lib;UefiDevicePathLibDevicePathProtocol.lib;UefiDebugLibConOut.lib;UefiMemoryLib.lib;UefiMemoryAllocationLib.lib;BaseSynchronizationLib.lib;UefiFileHandleLib.lib</AdditionalDependencies>
<GenerateDebugInformation>DebugFastLink</GenerateDebugInformation>
<SubSystem>EFI Boot Service Driver</SubSystem>
<Driver>Driver</Driver>
<OptimizeReferences>true</OptimizeReferences>
<EnableCOMDATFolding />
<LinkTimeCodeGeneration>UseFastLinkTimeCodeGeneration</LinkTimeCodeGeneration>
<BaseAddress>0</BaseAddress>
<SectionAlignment>32</SectionAlignment>
<ImageHasSafeExceptionHandlers>false</ImageHasSafeExceptionHandlers>
<RandomizedBaseAddress />
<DataExecutionPrevention />
<ManifestFile />
<AllowIsolation />
<EnableUAC />
<UACExecutionLevel />
<UACUIAccess />
<TypeLibraryResourceID />
<AdditionalOptions>/OPT:ICF=10 /IGNORE:4001 /IGNORE:4254 /IGNORE:4281 %(AdditionalOptions)</AdditionalOptions>
<MergeSections>.rdata=.data</MergeSections>
<SpecifySectionAttributes>.xdata,D</SpecifySectionAttributes>
<LinkErrorReporting />
<ProfileGuidedDatabase />
<EntryPointSymbol>EfiMain</EntryPointSymbol>
</Link>
</ItemDefinitionGroup>
</Project>