| 123456789101112131415161718 |
- <?xml version="1.0" encoding="utf-8"?>
- <Project DefaultTargets="Build" ToolsVersion="12.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
- <Import Project="Common.Build.Default.props"/>
- <Import Condition="'$(Clang)'!=''" Project="Chakra.Build.Clang.Default.props"/>
- <PropertyGroup>
- <WindowsTargetPlatformVersion Condition="'$(Platform)'=='ARM'">10.0.10240.0</WindowsTargetPlatformVersion>
- <!-- Always use Platform SDK for core builds -->
- <EventManifestXmlPath>$(WindowsSDK80Path)Include\um</EventManifestXmlPath>
- <!-- Unless indicated otherwise, statically link the C++ Runtime into ChakraCore.dll -->
- <RuntimeLib Condition="'$(RuntimeLib)'==''">static_library</RuntimeLib>
- <NtTargetVersion>$(NtTargetVersion_Win7)</NtTargetVersion>
- <!-- On ARM we depend an API that was added in Win8 timeframe, specifically GetCurrentThreadLimits.
- Note that for ARM we don't need to support running on Win7, so it's fine to require Win8 as minimum. -->
- <NtTargetVersion Condition="'$(Platform)'=='ARM' or '$(Platform)'=='Arm64'">$(NtTargetVersion_Win8)</NtTargetVersion>
- </PropertyGroup>
- </Project>
|