1<?xml version="1.0" encoding="utf-8"?>
2<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3  <ImportGroup Label="PropertySheets" />
4  <PropertyGroup Label="UserMacros">
5    <Runtime Condition="'$(ApplicationType)'=='Windows Phone'">WP</Runtime>
6    <Runtime Condition="'$(ApplicationType)'=='Windows Store'">WS</Runtime>
7    <OpenCV_Bin>$(OPENCV_WINRT_INSTALL_DIR)\$(Runtime)\8.1\$(PlatformTarget)\$(PlatformTarget)\vc12\bin\</OpenCV_Bin>
8    <OpenCV_Lib>$(OPENCV_WINRT_INSTALL_DIR)\$(Runtime)\8.1\$(PlatformTarget)\$(PlatformTarget)\vc12\lib\</OpenCV_Lib>
9    <OpenCV_Include>$(OPENCV_WINRT_INSTALL_DIR)\$(Runtime)\8.1\$(PlatformTarget)\include\</OpenCV_Include>
10    <!--debug suffix for OpenCV dlls and libs -->
11    <DebugSuffix Condition="'$(Configuration)'=='Debug'">d</DebugSuffix>
12    <DebugSuffix Condition="'$(Configuration)'!='Debug'"></DebugSuffix>
13
14</PropertyGroup>
15  <ItemGroup>
16    <!-- Add required OpenCV dlls here-->
17
18    <!-- General-->
19    <None Include="$(OpenCV_Bin)opencv_core300$(DebugSuffix).dll">
20      <DeploymentContent>true</DeploymentContent>
21    </None>
22    <None Include="$(OpenCV_Bin)opencv_imgproc300$(DebugSuffix).dll">
23      <DeploymentContent>true</DeploymentContent>
24    </None>
25    <None Include="$(OpenCV_Bin)opencv_flann300$(DebugSuffix).dll">
26      <DeploymentContent>true</DeploymentContent>
27    </None>
28    <None Include="$(OpenCV_Bin)opencv_features2d300$(DebugSuffix).dll">
29      <DeploymentContent>true</DeploymentContent>
30    </None>
31    <None Include="$(OpenCV_Bin)opencv_imgcodecs300$(DebugSuffix).dll">
32      <DeploymentContent>true</DeploymentContent>
33    </None>
34
35    <!-- Video processing -->
36    <None Include="$(OpenCV_Bin)opencv_videoio300$(DebugSuffix).dll">
37      <DeploymentContent>true</DeploymentContent>
38    </None>
39
40    <!-- Face detection-->
41    <None Include="$(OpenCV_Bin)opencv_objdetect300$(DebugSuffix).dll">
42      <DeploymentContent>true</DeploymentContent>
43    </None>
44    <None Include="$(OpenCV_Bin)opencv_ml300$(DebugSuffix).dll">
45      <DeploymentContent>true</DeploymentContent>
46    </None>
47  </ItemGroup>
48  <ItemDefinitionGroup>
49    <ClCompile>
50      <AdditionalIncludeDirectories>$(OpenCV_Include);%(AdditionalIncludeDirectories);</AdditionalIncludeDirectories>
51    </ClCompile>
52    <Link>
53      <!--Add required OpenCV libs here-->
54      <AdditionalDependencies>opencv_core300$(DebugSuffix).lib;opencv_imgproc300$(DebugSuffix).lib;opencv_flann300$(DebugSuffix).lib;opencv_videoio300$(DebugSuffix).lib;opencv_features2d300$(DebugSuffix).lib;opencv_objdetect300$(DebugSuffix).lib;opencv_ml300$(DebugSuffix).lib;%(AdditionalDependencies)</AdditionalDependencies>
55      <AdditionalLibraryDirectories>$(OpenCV_Lib);%(AdditionalLibraryDirectories);</AdditionalLibraryDirectories>
56    </Link>
57  </ItemDefinitionGroup>
58</Project>