singrdk/base/boot/Boot.proj

29 lines
984 B
Plaintext
Raw Normal View History

2008-11-17 18:29:00 -05:00
<!--
###############################################################################
#
# Copyright (c) Microsoft Corporation. All rights reserved.
#
###############################################################################
-->
2008-03-05 09:52:00 -05:00
2008-11-17 18:29:00 -05:00
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="..\Paths.targets" />
<ItemGroup Condition="'$(Machine)'=='x86' Or '$(Machine)'=='x64'">
2008-03-05 09:52:00 -05:00
<ProjectReference Include="BootSectors\BootSectors.proj" />
2008-11-17 18:29:00 -05:00
<ProjectReference Include="SingLdrPc\bootpc.proj" />
</ItemGroup>
<ItemGroup Condition="'$(Machine)'=='arm' and '$(Platform)'=='Omap3430'">
<ProjectReference Include="SingLdrArm\Omap3430\Omap3430.proj" />
</ItemGroup>
<ItemGroup Condition="'$(Machine)'=='arm' and '$(Platform)'=='Smdk2410'">
<ProjectReference Include="SingLdrArm\Smdk2410\Smdk2410.proj" />
2008-03-05 09:52:00 -05:00
</ItemGroup>
<Import Project="$(SINGULARITY_ROOT)\Targets\Dirs.targets" />
</Project>