-
Notifications
You must be signed in to change notification settings - Fork 258
/
shv.vcxproj
50 lines (50 loc) · 2.03 KB
/
shv.vcxproj
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
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="12.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ItemGroup Label="ProjectConfigurations">
<ProjectConfiguration Include="NT|x64">
<Configuration>NT</Configuration>
<Platform>x64</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="UEFI|x64">
<Configuration>UEFI</Configuration>
<Platform>x64</Platform>
</ProjectConfiguration>
</ItemGroup>
<PropertyGroup Label="Globals">
<Keyword>Win32Proj</Keyword>
<ProjectGuid>{4C048BB2-7E8D-43BF-B29D-942461275023}</ProjectGuid>
<WindowsTargetPlatformVersion>$(LatestTargetPlatformVersion)</WindowsTargetPlatformVersion>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
<Import Project="$(Configuration)\$(Configuration).default.props" />
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)'=='UEFI'">
<Import Project="$(VCTargetsPath)\BuildCustomizations\masm.props" />
</ImportGroup>
<Import Project="$(Configuration)\$(Configuration).props" />
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)'=='UEFI'">
<Import Project="$(VCTargetsPath)\BuildCustomizations\masm.targets" />
</ImportGroup>
<PropertyGroup>
<IncludePath>$(IncludePath);$(VC_IncludePath)</IncludePath>
</PropertyGroup>
<ItemGroup>
<ClCompile Include="shv.c" />
<ClCompile Include="shvutil.c" />
<ClCompile Include="shvvmx.c" />
<ClCompile Include="shvvmxhv.c" />
<ClCompile Include="shvvp.c" />
<ClCompile Include="$(Configuration)\shvos.c"/>
</ItemGroup>
<ItemGroup>
<ClInclude Include="shv.h" />
<ClInclude Include="ntint.h" />
<ClInclude Include="shv_x.h" />
<ClInclude Include="vmx.h" />
</ItemGroup>
<ItemGroup>
<MASM Include="shvvmxhvx64.asm" />
<MASM Include="$(Configuration)\shvosx64.asm"/>
</ItemGroup>
</Project>