2019-02-12 21:04:51 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
|
|
|
|
|
|
|
|
<ItemDefinitionGroup>
|
|
|
|
|
<ClCompile>
|
|
|
|
|
<AdditionalIncludeDirectories>$(MSBuildThisFileDirectory)../../build/native/include/;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
|
|
|
</ClCompile>
|
|
|
|
|
<ResourceCompile>
|
|
|
|
|
<AdditionalIncludeDirectories>$(MSBuildThisFileDirectory)../../build/native/include/;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
|
|
|
</ResourceCompile>
|
|
|
|
|
</ItemDefinitionGroup>
|
|
|
|
|
|
2020-02-26 04:28:36 +00:00
|
|
|
<ItemDefinitionGroup Condition="'$(PlatformTarget)' == 'x64' OR ('$(PlatformTarget)' == 'AnyCPU' AND '$(Prefer32Bit)' != 'true')">
|
2019-02-12 21:04:51 +00:00
|
|
|
<Link>
|
|
|
|
|
<AdditionalDependencies>$(MSBuildThisFileDirectory)../../runtimes/win-x64/native/onnxruntime.lib</AdditionalDependencies>
|
|
|
|
|
</Link>
|
|
|
|
|
</ItemDefinitionGroup>
|
|
|
|
|
|
2020-02-26 04:28:36 +00:00
|
|
|
<ItemDefinitionGroup Condition="'$(PlatformTarget)' == 'x86' OR ('$(PlatformTarget)' == 'AnyCPU' AND '$(Prefer32Bit)' == 'true')">
|
2019-04-27 07:41:26 +00:00
|
|
|
<Link>
|
|
|
|
|
<AdditionalDependencies>$(MSBuildThisFileDirectory)../../runtimes/win-x86/native/onnxruntime.lib</AdditionalDependencies>
|
|
|
|
|
</Link>
|
|
|
|
|
</ItemDefinitionGroup>
|
|
|
|
|
|
2020-05-02 07:33:17 +00:00
|
|
|
<PropertyGroup>
|
|
|
|
|
<EnginePlatform Condition="'$(Platform)' == 'Win32'">x86</EnginePlatform>
|
|
|
|
|
<EnginePlatform Condition="'$(Platform)' != 'Win32'">$(Platform)</EnginePlatform>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<OnnxRuntimeBinary>$(MSBuildThisFileDirectory)..\..\runtimes\win-$(EnginePlatform)\native\onnxruntime.dll</OnnxRuntimeBinary>
|
|
|
|
|
<DirectMLBinary Condition="Exists('$(MSBuildThisFileDirectory)..\..\runtimes\win-$(EnginePlatform)\native\directml.dll')">$(MSBuildThisFileDirectory)..\..\runtimes\win-$(EnginePlatform)\native\directml.dll</DirectMLBinary>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2019-02-12 21:04:51 +00:00
|
|
|
<ItemGroup Condition="Exists('packages.config') OR
|
|
|
|
|
Exists('$(MSBuildProjectName).packages.config') OR
|
|
|
|
|
Exists('packages.$(MSBuildProjectName).config')">
|
|
|
|
|
<None Include="$(MSBuildThisFileDirectory)..\..\runtimes\win-x64\native\onnxruntime.dll"
|
2020-02-26 04:28:36 +00:00
|
|
|
Condition="'$(PlatformTarget)' == 'x64' OR ('$(PlatformTarget)' == 'AnyCPU' AND '$(Prefer32Bit)' != 'true')">
|
2019-04-27 07:41:26 +00:00
|
|
|
<Link>onnxruntime.dll</Link>
|
2019-02-12 21:04:51 +00:00
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
<Visible>false</Visible>
|
|
|
|
|
</None>
|
2019-12-03 15:34:23 +00:00
|
|
|
<None Include="$(MSBuildThisFileDirectory)..\..\runtimes\win-x64\native\dnnl.dll"
|
2020-02-26 04:28:36 +00:00
|
|
|
Condition="('$(PlatformTarget)' == 'x64' OR ('$(PlatformTarget)' == 'AnyCPU' AND '$(Prefer32Bit)' != 'true')) AND
|
2019-12-03 15:34:23 +00:00
|
|
|
Exists('$(MSBuildThisFileDirectory)..\..\runtimes\win-x64\native\dnnl.dll')">
|
|
|
|
|
<Link>dnnl.dll</Link>
|
2019-02-12 21:04:51 +00:00
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
<Visible>false</Visible>
|
|
|
|
|
</None>
|
2019-04-10 05:48:00 +00:00
|
|
|
<None Include="$(MSBuildThisFileDirectory)..\..\runtimes\win-x64\native\mklml.dll"
|
2020-02-26 04:28:36 +00:00
|
|
|
Condition="('$(PlatformTarget)' == 'x64' OR ('$(PlatformTarget)' == 'AnyCPU' AND '$(Prefer32Bit)' != 'true')) AND
|
2019-04-10 05:48:00 +00:00
|
|
|
Exists('$(MSBuildThisFileDirectory)..\..\runtimes\win-x64\native\mklml.dll')">
|
|
|
|
|
<Link>mklml.dll</Link>
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
<Visible>false</Visible>
|
|
|
|
|
</None>
|
2019-04-16 07:00:07 +00:00
|
|
|
<None Include="$(MSBuildThisFileDirectory)..\..\runtimes\win-x64\native\libiomp5md.dll"
|
2020-02-26 04:28:36 +00:00
|
|
|
Condition="('$(PlatformTarget)' == 'x64' OR ('$(PlatformTarget)' == 'AnyCPU' AND '$(Prefer32Bit)' != 'true')) AND
|
2019-04-16 07:00:07 +00:00
|
|
|
Exists('$(MSBuildThisFileDirectory)..\..\runtimes\win-x64\native\libiomp5md.dll')">
|
|
|
|
|
<Link>libiomp5md.dll</Link>
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
<Visible>false</Visible>
|
|
|
|
|
</None>
|
2019-04-27 07:41:26 +00:00
|
|
|
<None Include="$(MSBuildThisFileDirectory)..\..\runtimes\win-x86\native\onnxruntime.dll"
|
2020-02-26 04:28:36 +00:00
|
|
|
Condition="('$(PlatformTarget)' == 'x86' OR ('$(PlatformTarget)' == 'AnyCPU' AND '$(Prefer32Bit)' == 'true'))">
|
2019-04-27 07:41:26 +00:00
|
|
|
<Link>onnxruntime.dll</Link>
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
<Visible>false</Visible>
|
|
|
|
|
</None>
|
2019-12-03 15:34:23 +00:00
|
|
|
<None Include="$(MSBuildThisFileDirectory)..\..\runtimes\win-x86\native\dnnl.dll"
|
2020-02-26 04:28:36 +00:00
|
|
|
Condition="('$(PlatformTarget)' == 'x86' OR ('$(PlatformTarget)' == 'AnyCPU' AND '$(Prefer32Bit)' == 'true')) AND
|
2019-12-03 15:34:23 +00:00
|
|
|
Exists('$(MSBuildThisFileDirectory)..\..\runtimes\win-x86\native\dnnl.dll')">
|
|
|
|
|
<Link>dnnl.dll</Link>
|
2019-04-27 07:41:26 +00:00
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
<Visible>false</Visible>
|
|
|
|
|
</None>
|
|
|
|
|
<None Include="$(MSBuildThisFileDirectory)..\..\runtimes\win-x86\native\mklml.dll"
|
2020-02-26 04:28:36 +00:00
|
|
|
Condition="('$(PlatformTarget)' == 'x86' OR ('$(PlatformTarget)' == 'AnyCPU' AND '$(Prefer32Bit)' == 'true')) AND
|
2019-04-27 07:41:26 +00:00
|
|
|
Exists('$(MSBuildThisFileDirectory)..\..\runtimes\win-x86\native\mklml.dll')">
|
|
|
|
|
<Link>mklml.dll</Link>
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
<Visible>false</Visible>
|
|
|
|
|
</None>
|
|
|
|
|
<None Include="$(MSBuildThisFileDirectory)..\..\runtimes\win-x86\native\libiomp5md.dll"
|
2020-02-26 04:28:36 +00:00
|
|
|
Condition="('$(PlatformTarget)' == 'x86' OR ('$(PlatformTarget)' == 'AnyCPU' AND '$(Prefer32Bit)' == 'true')) AND
|
2019-04-27 07:41:26 +00:00
|
|
|
Exists('$(MSBuildThisFileDirectory)..\..\runtimes\win-x86\native\libiomp5md.dll')">
|
|
|
|
|
<Link>libiomp5md.dll</Link>
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
<Visible>false</Visible>
|
|
|
|
|
</None>
|
2019-02-12 21:04:51 +00:00
|
|
|
</ItemGroup>
|
|
|
|
|
</Project>
|