Rev 667 | Blame | Last modification | View Log | RSS feed
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="12.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ItemGroup Label="ProjectConfigurations">
<ProjectConfiguration Include="Debug|Win32">
<Configuration>Debug</Configuration>
<Platform>Win32</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Release|Win32">
<Configuration>Release</Configuration>
<Platform>Win32</Platform>
</ProjectConfiguration>
</ItemGroup>
<PropertyGroup Label="Globals">
<ProjectGuid>{D5B81E81-5A23-4915-9CA8-C8C77DE45048}</ProjectGuid>
<RootNamespace>HMesh</RootNamespace>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
<ConfigurationType>StaticLibrary</ConfigurationType>
<UseDebugLibraries>true</UseDebugLibraries>
<PlatformToolset>v120</PlatformToolset>
<CharacterSet>MultiByte</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
<ConfigurationType>StaticLibrary</ConfigurationType>
<UseDebugLibraries>false</UseDebugLibraries>
<PlatformToolset>v120</PlatformToolset>
<WholeProgramOptimization>true</WholeProgramOptimization>
<CharacterSet>MultiByte</CharacterSet>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
<ImportGroup Label="ExtensionSettings">
</ImportGroup>
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
</ImportGroup>
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
</ImportGroup>
<PropertyGroup Label="UserMacros" />
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
<TargetExt>.lib</TargetExt>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<TargetExt>.lib</TargetExt>
</PropertyGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<ClCompile>
<WarningLevel>Level3</WarningLevel>
<Optimization>Disabled</Optimization>
<SDLCheck>true</SDLCheck>
<AdditionalIncludeDirectories>$(SolutionPath)\..\..\src</AdditionalIncludeDirectories>
<PreprocessorDefinitions>_MBCS;WIN32;_SCL_SECURE_NO_WARNINGS;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
</ClCompile>
<Link>
<GenerateDebugInformation>true</GenerateDebugInformation>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
<ClCompile>
<WarningLevel>Level3</WarningLevel>
<Optimization>MaxSpeed</Optimization>
<FunctionLevelLinking>true</FunctionLevelLinking>
<IntrinsicFunctions>true</IntrinsicFunctions>
<SDLCheck>true</SDLCheck>
<AdditionalIncludeDirectories>$(SolutionPath)\..\..\src</AdditionalIncludeDirectories>
<PreprocessorDefinitions>_MBCS;WIN32;_SCL_SECURE_NO_WARNINGS;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
</ClCompile>
<Link>
<GenerateDebugInformation>true</GenerateDebugInformation>
<EnableCOMDATFolding>true</EnableCOMDATFolding>
<OptimizeReferences>true</OptimizeReferences>
</Link>
</ItemDefinitionGroup>
<ItemGroup>
<ClInclude Include="..\..\src\HMesh\AttributeVector.h" />
<ClInclude Include="..\..\src\HMesh\cleanup.h" />
<ClInclude Include="..\..\src\HMesh\ConnectivityKernel.h" />
<ClInclude Include="..\..\src\HMesh\curvature.h" />
<ClInclude Include="..\..\src\HMesh\dual.h" />
<ClInclude Include="..\..\src\HMesh\flatten.h" />
<ClInclude Include="..\..\src\HMesh\harmonics.h" />
<ClInclude Include="..\..\src\HMesh\ItemID.h" />
<ClInclude Include="..\..\src\HMesh\ItemVector.h" />
<ClInclude Include="..\..\src\HMesh\Iterators.h" />
<ClInclude Include="..\..\src\HMesh\load.h" />
<ClInclude Include="..\..\src\HMesh\Manifold.h" />
<ClInclude Include="..\..\src\HMesh\mesh_optimization.h" />
<ClInclude Include="..\..\src\HMesh\obj_load.h" />
<ClInclude Include="..\..\src\HMesh\obj_save.h" />
<ClInclude Include="..\..\src\HMesh\off_load.h" />
<ClInclude Include="..\..\src\HMesh\off_save.h" />
<ClInclude Include="..\..\src\HMesh\ply_load.h" />
<ClInclude Include="..\..\src\HMesh\polygonize.h" />
<ClInclude Include="..\..\src\HMesh\quadric_simplify.h" />
<ClInclude Include="..\..\src\HMesh\refine_edges.h" />
<ClInclude Include="..\..\src\HMesh\smooth.h" />
<ClInclude Include="..\..\src\HMesh\subdivision.h" />
<ClInclude Include="..\..\src\HMesh\triangulate.h" />
<ClInclude Include="..\..\src\HMesh\Walker.h" />
<ClInclude Include="..\..\src\HMesh\x3d_load.h" />
<ClInclude Include="..\..\src\HMesh\x3d_save.h" />
</ItemGroup>
<ItemGroup>
<ClCompile Include="..\..\src\HMesh\cleanup.cpp" />
<ClCompile Include="..\..\src\HMesh\ConnectivityKernel.cpp" />
<ClCompile Include="..\..\src\HMesh\curvature.cpp" />
<ClCompile Include="..\..\src\HMesh\dual.cpp" />
<ClCompile Include="..\..\src\HMesh\flatten.cpp" />
<ClCompile Include="..\..\src\HMesh\harmonics.cpp" />
<ClCompile Include="..\..\src\HMesh\load.cpp" />
<ClCompile Include="..\..\src\HMesh\Manifold.cpp" />
<ClCompile Include="..\..\src\HMesh\mesh_optimization.cpp" />
<ClCompile Include="..\..\src\HMesh\obj_load.cpp" />
<ClCompile Include="..\..\src\HMesh\obj_save.cpp" />
<ClCompile Include="..\..\src\HMesh\off_load.cpp" />
<ClCompile Include="..\..\src\HMesh\off_save.cpp" />
<ClCompile Include="..\..\src\HMesh\ply_load.cpp" />
<ClCompile Include="..\..\src\HMesh\polygonize.cpp" />
<ClCompile Include="..\..\src\HMesh\quadric_simplify.cpp" />
<ClCompile Include="..\..\src\HMesh\refine_edges.cpp" />
<ClCompile Include="..\..\src\HMesh\smooth.cpp" />
<ClCompile Include="..\..\src\HMesh\subdivision.cpp" />
<ClCompile Include="..\..\src\HMesh\triangulate.cpp" />
<ClCompile Include="..\..\src\HMesh\x3d_load.cpp" />
<ClCompile Include="..\..\src\HMesh\x3d_save.cpp" />
</ItemGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
<ImportGroup Label="ExtensionTargets">
</ImportGroup>
</Project>
Generated by GNU Enscript 1.6.6.