2008-03-05 09:52:00 -05:00
|
|
|
|
<!--
|
|
|
|
|
###############################################################################
|
|
|
|
|
#
|
|
|
|
|
# Copyright (c) Microsoft Corporation. All rights reserved.
|
|
|
|
|
#
|
|
|
|
|
###############################################################################
|
|
|
|
|
-->
|
|
|
|
|
|
|
|
|
|
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
|
|
|
<Import Project="..\Paths.targets" />
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
2008-11-17 18:29:00 -05:00
|
|
|
|
<AssemblyName>Hal</AssemblyName>
|
2008-03-05 09:52:00 -05:00
|
|
|
|
<OutputType>Library</OutputType>
|
2008-11-17 18:29:00 -05:00
|
|
|
|
<OutputPath>$(KERNEL_IL_DIR)\ApicMP</OutputPath>
|
2008-03-05 09:52:00 -05:00
|
|
|
|
<Language>C#</Language>
|
|
|
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
|
|
|
<DefineConstants>SINGULARITY_MP</DefineConstants>
|
|
|
|
|
</PropertyGroup>
|
2008-11-17 18:29:00 -05:00
|
|
|
|
|
2008-03-05 09:52:00 -05:00
|
|
|
|
<Import Project="Hal.Common.targets" />
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Compile Include="Singularity.Hal.ApicPc\Apic.cs"/>
|
|
|
|
|
<Compile Include="Singularity.Hal.ApicPc\ApicTimer.cs"/>
|
|
|
|
|
<Compile Include="Singularity.Hal.ApicPc\Calibrate.cs"/>
|
|
|
|
|
<Compile Include="Singularity.Hal.ApicPC\HalDevices.cs"/>
|
|
|
|
|
<Compile Include="Singularity.Hal.ApicPC\Hpet.cs"/>
|
|
|
|
|
<Compile Include="Singularity.Hal.ApicPC\HpetClock.cs"/>
|
|
|
|
|
<Compile Include="Singularity.Hal.ApicPc\IoApic.cs"/>
|
|
|
|
|
<Compile Include="Singularity.Hal.ApicPc\MpHalClock.cs"/>
|
|
|
|
|
<Compile Include="Singularity.Hal.ApicPc\MpResources.cs"/>
|
|
|
|
|
<Compile Include="Singularity.Hal.ApicPc\Pic.cs"/>
|
|
|
|
|
<Compile Include="Singularity.Hal.ApicPc\PmClock.cs"/>
|
|
|
|
|
<Compile Include="Singularity.Hal.ApicPC\RTClock.cs"/>
|
|
|
|
|
<Compile Include="Singularity.Hal.ApicPC\Timer8254.cs"/>
|
2008-11-17 18:29:00 -05:00
|
|
|
|
<Compile Include="Singularity.Hal.LegacyPC\CalibrateTimer.cs"/>
|
|
|
|
|
<Compile Include="Singularity.Hal.LegacyPC\ClockLogger.cs"/>
|
|
|
|
|
<Compile Include="Singularity.Hal.LegacyPC\HalDevices.cs"/>
|
|
|
|
|
<Compile Include="Singularity.Hal.LegacyPC\HalScreenDirect.cs"/>
|
|
|
|
|
<Compile Include="Singularity.Hal.LegacyPC\Pic.cs"/>
|
|
|
|
|
<Compile Include="Singularity.Hal.LegacyPC\RTClock.cs"/>
|
|
|
|
|
<Compile Include="Singularity.Hal.LegacyPC\RtcPitState.cs"/>
|
|
|
|
|
<Compile Include="Singularity.Hal.LegacyPC\Timer8254.cs"/>
|
2008-03-05 09:52:00 -05:00
|
|
|
|
<Compile Include="@(HAL_ACPI_SOURCES)"/>
|
|
|
|
|
<Compile Include="@(HAL_COMMON_SOURCES)"/>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<Import Project="$(SINGULARITY_ROOT)\Targets\KernelLibrary.targets"/>
|
|
|
|
|
|
|
|
|
|
</Project>
|