Subversion Repositories gelsvn

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
667 khor 1
<?xml version="1.0" encoding="utf-8"?>
2
<Project DefaultTargets="Build" ToolsVersion="12.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3
  <ItemGroup Label="ProjectConfigurations">
4
    <ProjectConfiguration Include="Debug|Win32">
5
      <Configuration>Debug</Configuration>
6
      <Platform>Win32</Platform>
7
    </ProjectConfiguration>
8
    <ProjectConfiguration Include="Release|Win32">
9
      <Configuration>Release</Configuration>
10
      <Platform>Win32</Platform>
11
    </ProjectConfiguration>
12
  </ItemGroup>
13
  <PropertyGroup Label="Globals">
14
    <ProjectGuid>{84401E07-7F90-437D-839B-008B8A5F4C6D}</ProjectGuid>
15
    <RootNamespace>Geometry</RootNamespace>
16
  </PropertyGroup>
17
  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
18
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
19
    <ConfigurationType>StaticLibrary</ConfigurationType>
20
    <UseDebugLibraries>true</UseDebugLibraries>
21
    <PlatformToolset>v120</PlatformToolset>
22
    <CharacterSet>MultiByte</CharacterSet>
23
  </PropertyGroup>
24
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
25
    <ConfigurationType>StaticLibrary</ConfigurationType>
26
    <UseDebugLibraries>false</UseDebugLibraries>
27
    <PlatformToolset>v120</PlatformToolset>
28
    <WholeProgramOptimization>true</WholeProgramOptimization>
29
    <CharacterSet>MultiByte</CharacterSet>
30
  </PropertyGroup>
31
  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
32
  <ImportGroup Label="ExtensionSettings">
33
  </ImportGroup>
34
  <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
35
    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
36
  </ImportGroup>
37
  <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
38
    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
39
  </ImportGroup>
40
  <PropertyGroup Label="UserMacros" />
41
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
42
    <TargetExt>.lib</TargetExt>
43
  </PropertyGroup>
44
  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
45
    <TargetExt>.lib</TargetExt>
46
  </PropertyGroup>
47
  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
48
    <ClCompile>
49
      <WarningLevel>Level3</WarningLevel>
50
      <Optimization>Disabled</Optimization>
51
      <SDLCheck>true</SDLCheck>
52
      <AdditionalIncludeDirectories>$(SolutionPath)\..\..\src</AdditionalIncludeDirectories>
53
      <PreprocessorDefinitions>_MBCS;WIN32;_SCL_SECURE_NO_WARNINGS;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
54
    </ClCompile>
55
    <Link>
56
      <GenerateDebugInformation>true</GenerateDebugInformation>
57
    </Link>
58
  </ItemDefinitionGroup>
59
  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
60
    <ClCompile>
61
      <WarningLevel>Level3</WarningLevel>
62
      <Optimization>MaxSpeed</Optimization>
63
      <FunctionLevelLinking>true</FunctionLevelLinking>
64
      <IntrinsicFunctions>true</IntrinsicFunctions>
65
      <SDLCheck>true</SDLCheck>
66
      <DisableSpecificWarnings>4996</DisableSpecificWarnings>
67
      <AdditionalIncludeDirectories>$(SolutionPath)\..\..\src</AdditionalIncludeDirectories>
68
    </ClCompile>
69
    <Link>
70
      <GenerateDebugInformation>true</GenerateDebugInformation>
71
      <EnableCOMDATFolding>true</EnableCOMDATFolding>
72
      <OptimizeReferences>true</OptimizeReferences>
73
    </Link>
74
  </ItemDefinitionGroup>
75
  <ItemGroup>
76
    <ClCompile Include="..\..\src\Geometry\AABox.cpp" />
77
    <ClCompile Include="..\..\src\Geometry\BBox.cpp" />
78
    <ClCompile Include="..\..\src\Geometry\BoundingINode.cpp" />
79
    <ClCompile Include="..\..\src\Geometry\BoundingLNode.cpp" />
80
    <ClCompile Include="..\..\src\Geometry\BoundingNode.cpp" />
81
    <ClCompile Include="..\..\src\Geometry\BoundingTree.cpp" />
82
    <ClCompile Include="..\..\src\Geometry\BSPTree.cpp" />
83
    <ClCompile Include="..\..\src\Geometry\build_bbtree.cpp" />
84
    <ClCompile Include="..\..\src\Geometry\geo_load.cpp" />
85
    <ClCompile Include="..\..\src\Geometry\geo_obj_load.cpp" />
86
    <ClCompile Include="..\..\src\Geometry\GradientFilter.cpp" />
87
    <ClCompile Include="..\..\src\Geometry\Implicit.cpp" />
88
    <ClCompile Include="..\..\src\Geometry\load_raw.cpp" />
89
    <ClCompile Include="..\..\src\Geometry\Neighbours.cpp" />
90
    <ClCompile Include="..\..\src\Geometry\OBox.cpp" />
91
    <ClCompile Include="..\..\src\Geometry\Polygonizer.cpp" />
92
    <ClCompile Include="..\..\src\Geometry\QEM.cpp" />
93
    <ClCompile Include="..\..\src\Geometry\rply.c" />
94
    <ClCompile Include="..\..\src\Geometry\rply_load.cpp" />
95
    <ClCompile Include="..\..\src\Geometry\tessellate.cpp" />
96
    <ClCompile Include="..\..\src\Geometry\ThreeDDDA.cpp" />
97
    <ClCompile Include="..\..\src\Geometry\Triangle.cpp" />
98
    <ClCompile Include="..\..\src\Geometry\TrilinFilter.cpp" />
99
    <ClCompile Include="..\..\src\Geometry\TriMesh.cpp" />
100
    <ClCompile Include="..\..\src\Geometry\verification.cpp" />
101
  </ItemGroup>
102
  <ItemGroup>
103
    <ClInclude Include="..\..\src\Geometry\AABox.h" />
104
    <ClInclude Include="..\..\src\Geometry\AncestorGrid.h" />
105
    <ClInclude Include="..\..\src\Geometry\BBox.h" />
106
    <ClInclude Include="..\..\src\Geometry\BoundingINode.h" />
107
    <ClInclude Include="..\..\src\Geometry\BoundingLNode.h" />
108
    <ClInclude Include="..\..\src\Geometry\BoundingNode.h" />
109
    <ClInclude Include="..\..\src\Geometry\BoundingTree.h" />
110
    <ClInclude Include="..\..\src\Geometry\BSPTree.h" />
111
    <ClInclude Include="..\..\src\Geometry\build_bbtree.h" />
112
    <ClInclude Include="..\..\src\Geometry\Cell.h" />
113
    <ClInclude Include="..\..\src\Geometry\GradientFilter.h" />
114
    <ClInclude Include="..\..\src\Geometry\GridAlgorithm.h" />
115
    <ClInclude Include="..\..\src\Geometry\HGrid.h" />
116
    <ClInclude Include="..\..\src\Geometry\Implicit.h" />
117
    <ClInclude Include="..\..\src\Geometry\IndexedFaceSet.h" />
118
    <ClInclude Include="..\..\src\Geometry\KDTree.h" />
119
    <ClInclude Include="..\..\src\Geometry\load.h" />
120
    <ClInclude Include="..\..\src\Geometry\load_raw.h" />
121
    <ClInclude Include="..\..\src\Geometry\Material.h" />
122
    <ClInclude Include="..\..\src\Geometry\Neighbours.h" />
123
    <ClInclude Include="..\..\src\Geometry\obj_load.h" />
124
    <ClInclude Include="..\..\src\Geometry\OBox.h" />
125
    <ClInclude Include="..\..\src\Geometry\ply_load.h" />
126
    <ClInclude Include="..\..\src\Geometry\Polygonizer.h" />
127
    <ClInclude Include="..\..\src\Geometry\QEM.h" />
128
    <ClInclude Include="..\..\src\Geometry\Ray.h" />
129
    <ClInclude Include="..\..\src\Geometry\RGrid.h" />
130
    <ClInclude Include="..\..\src\Geometry\rply.h" />
131
    <ClInclude Include="..\..\src\Geometry\save_raw.h" />
132
    <ClInclude Include="..\..\src\Geometry\tessellate.h" />
133
    <ClInclude Include="..\..\src\Geometry\ThreeDDDA.h" />
134
    <ClInclude Include="..\..\src\Geometry\Triangle.h" />
135
    <ClInclude Include="..\..\src\Geometry\TrilinFilter.h" />
136
    <ClInclude Include="..\..\src\Geometry\TriMesh.h" />
137
    <ClInclude Include="..\..\src\Geometry\verification.h" />
138
    <ClInclude Include="..\..\src\Geometry\XForm.h" />
139
  </ItemGroup>
140
  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
141
  <ImportGroup Label="ExtensionTargets">
142
  </ImportGroup>
143
</Project>