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 <OpenCV_Bin>$(OPENCV_WINRT_INSTALL_DIR)\WS\8.1\$(PlatformTarget)\$(PlatformTarget)\vc12\bin\</OpenCV_Bin> 6 <OpenCV_Lib>$(OPENCV_WINRT_INSTALL_DIR)\WS\8.1\$(PlatformTarget)\$(PlatformTarget)\vc12\lib\</OpenCV_Lib> 7 <OpenCV_Include>$(OPENCV_WINRT_INSTALL_DIR)\WS\8.1\$(PlatformTarget)\include\</OpenCV_Include> 8 <!--debug suffix for OpenCV dlls and libs --> 9 <DebugSuffix Condition="'$(Configuration)'=='Debug'">d</DebugSuffix> 10 <DebugSuffix Condition="'$(Configuration)'!='Debug'"> 11 </DebugSuffix> 12 </PropertyGroup> 13 <ItemGroup> 14 <!--Add required OpenCV dlls here--> 15 <None Include="$(OpenCV_Bin)opencv_core300$(DebugSuffix).dll"> 16 <DeploymentContent>true</DeploymentContent> 17 </None> 18 <None Include="$(OpenCV_Bin)opencv_imgcodecs300$(DebugSuffix).dll"> 19 <DeploymentContent>true</DeploymentContent> 20 </None> 21 <None Include="$(OpenCV_Bin)opencv_imgproc300$(DebugSuffix).dll"> 22 <DeploymentContent>true</DeploymentContent> 23 </None> 24 <None Include="$(OpenCV_Bin)opencv_features2d300$(DebugSuffix).dll"> 25 <DeploymentContent>true</DeploymentContent> 26 </None> 27 <None Include="$(OpenCV_Bin)opencv_flann300$(DebugSuffix).dll"> 28 <DeploymentContent>true</DeploymentContent> 29 </None> 30 <None Include="$(OpenCV_Bin)opencv_ml300$(DebugSuffix).dll"> 31 <DeploymentContent>true</DeploymentContent> 32 </None> 33 <None Include="$(OpenCV_Bin)opencv_objdetect300$(DebugSuffix).dll"> 34 <DeploymentContent>true</DeploymentContent> 35 </None> 36 </ItemGroup> 37 <ItemDefinitionGroup> 38 <ClCompile> 39 <AdditionalIncludeDirectories>$(OpenCV_Include);$(ProjectDir);$(GeneratedFilesDir);$(IntDir);%(AdditionalIncludeDirectories);</AdditionalIncludeDirectories> 40 </ClCompile> 41 <Link> 42 <!--Add required OpenCV libs here--> 43 <AdditionalDependencies>opencv_core300$(DebugSuffix).lib;opencv_imgcodecs300$(DebugSuffix).lib;opencv_imgproc300$(DebugSuffix).lib;opencv_features2d300$(DebugSuffix).lib;opencv_flann300$(DebugSuffix).lib;opencv_ml300$(DebugSuffix).lib;opencv_imgcodecs300$(DebugSuffix).lib;opencv_objdetect300$(DebugSuffix).lib;%(AdditionalDependencies)</AdditionalDependencies> 44 <AdditionalLibraryDirectories>$(OpenCV_Lib);%(AdditionalLibraryDirectories);</AdditionalLibraryDirectories> 45 </Link> 46 </ItemDefinitionGroup> 47 </Project>