-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcvfx.props
51 lines (51 loc) · 2.43 KB
/
cvfx.props
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ImportGroup Label="PropertySheets">
<Import Project="..\local\cvfx.local.props" />
</ImportGroup>
<PropertyGroup Label="UserMacros">
<BIN_PATH>bin-$(PlatformToolset)/$(Platform)/$(Configuration)/</BIN_PATH>
<OPENCV_VER>3413</OPENCV_VER>
<ASSIMP_VER>501</ASSIMP_VER>
<D_OPENCV>$(D_CVFX)/opencv$(OPENCV_VER)/</D_OPENCV>
<D_INCLUDE>$(D_CVF)/;$(D_OPENCV)/include;$(D_OPENCV)/include/opencv/;$(D_CVFX)/freeglut300/include/;$(D_CVFX)/assim$(ASSIMP_VER)/include;$(D_CVFX)/glm0963/include/;$(D_CVFX)/codec10/include/;$(D_CVFX)/libx1/;$(D_CVFX)/glew/include;$(D_CVFX)/vcglib/;$(D_CVFX)/eigen3/;$(D_CVFX)/json390/;$(D_CVFX)/glfw334/include;</D_INCLUDE>
<D_LIB>$(D_CVFX)/bin/$(Platform)/;$(D_OPENCV)/$(BIN_PATH);$(D_CVFX)/freeglut300/$(BIN_PATH);$(D_CVFX)/assim$(ASSIMP_VER)/$(BIN_PATH);$(D_CVFX)/libx1/$(BIN_PATH);$(D_CVFX)/codec10/lib/$(Platform)/;$(D_CVFX)/glew/bin/Release/$(Platform)/;$(D_CVFX)/glfw334/$(BIN_PATH);</D_LIB>
<D_PATH>$(D_LIB);$(D_DLL);</D_PATH>
</PropertyGroup>
<PropertyGroup>
<LibraryWPath>$(WindowsSDK_MetadataPath);</LibraryWPath>
</PropertyGroup>
<ItemDefinitionGroup>
<ClCompile>
<AdditionalIncludeDirectories>../;$(D_INCLUDE);%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<AdditionalOptions> /D"OPENCV_VER=$(OPENCV_VER)" /D"D_DATA=std::string(\"$(D_CLOUD)\")" %(AdditionalOptions)</AdditionalOptions>
<PreprocessorDefinitions>%(PreprocessorDefinitions)</PreprocessorDefinitions>
</ClCompile>
<Link>
<AdditionalLibraryDirectories>$(D_LIB);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
</Link>
</ItemDefinitionGroup>
<ItemGroup>
<BuildMacro Include="BIN_PATH">
<Value>$(BIN_PATH)</Value>
</BuildMacro>
<BuildMacro Include="OPENCV_VER">
<Value>$(OPENCV_VER)</Value>
</BuildMacro>
<BuildMacro Include="ASSIMP_VER">
<Value>$(ASSIMP_VER)</Value>
</BuildMacro>
<BuildMacro Include="D_OPENCV">
<Value>$(D_OPENCV)</Value>
</BuildMacro>
<BuildMacro Include="D_INCLUDE">
<Value>$(D_INCLUDE)</Value>
</BuildMacro>
<BuildMacro Include="D_LIB">
<Value>$(D_LIB)</Value>
</BuildMacro>
<BuildMacro Include="D_PATH">
<Value>$(D_PATH)</Value>
</BuildMacro>
</ItemGroup>
</Project>