Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Analysis.AlgorithmBehavior/liblrs/ctest_liblrs/ctest_liblrs.vcxproj @ 10198

Last change on this file since 10198 was 10198, checked in by ascheibe, 10 years ago

#1886

  • added liblrs and c# wrapper for vertex enumeration/volume calculation
  • use MIConvexHull for triangulation and volume calculation
  • fixed vertex conversion code for MIConvexHull lib
  • added a unit test for measuring performance of convex hull/volume calculation
File size: 4.0 KB
Line 
1<?xml version="1.0" encoding="utf-8"?>
2<Project DefaultTargets="Build" ToolsVersion="4.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>{B6D2A50A-D977-4F8F-8BCA-08591D6BB52D}</ProjectGuid>
15    <RootNamespace>ctest_liblrs</RootNamespace>
16  </PropertyGroup>
17  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
18  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
19    <ConfigurationType>Application</ConfigurationType>
20    <UseDebugLibraries>true</UseDebugLibraries>
21    <PlatformToolset>v110</PlatformToolset>
22    <CharacterSet>MultiByte</CharacterSet>
23  </PropertyGroup>
24  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
25    <ConfigurationType>Application</ConfigurationType>
26    <UseDebugLibraries>false</UseDebugLibraries>
27    <PlatformToolset>v110</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)'=='Debug|Win32'">
42    <IncludePath>$(SolutionDir);$(IncludePath)</IncludePath>
43    <LibraryPath>$(SolutionDir)Debug;$(LibraryPath)</LibraryPath>
44    <ReferencePath>$(SolutionDir)Debug;$(ReferencePath)</ReferencePath>
45  </PropertyGroup>
46  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
47    <IncludePath>$(SolutionDir);$(IncludePath)</IncludePath>
48    <LibraryPath>$(SolutionDir)\Release;$(LibraryPath)</LibraryPath>
49  </PropertyGroup>
50  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
51    <ClCompile>
52      <WarningLevel>Level3</WarningLevel>
53      <Optimization>Disabled</Optimization>
54      <SDLCheck>true</SDLCheck>
55    </ClCompile>
56    <Link>
57      <GenerateDebugInformation>true</GenerateDebugInformation>
58      <AdditionalDependencies>liblrs.lib;%(AdditionalDependencies)</AdditionalDependencies>
59    </Link>
60  </ItemDefinitionGroup>
61  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
62    <ClCompile>
63      <WarningLevel>Level3</WarningLevel>
64      <Optimization>MaxSpeed</Optimization>
65      <FunctionLevelLinking>true</FunctionLevelLinking>
66      <IntrinsicFunctions>true</IntrinsicFunctions>
67      <SDLCheck>true</SDLCheck>
68    </ClCompile>
69    <Link>
70      <GenerateDebugInformation>true</GenerateDebugInformation>
71      <EnableCOMDATFolding>true</EnableCOMDATFolding>
72      <OptimizeReferences>true</OptimizeReferences>
73      <AdditionalDependencies>$(SolutionDir)Release\liblrs.lib;%(AdditionalDependencies)</AdditionalDependencies>
74    </Link>
75  </ItemDefinitionGroup>
76  <ItemGroup>
77    <ClCompile Include="main.cpp" />
78  </ItemGroup>
79  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
80  <ImportGroup Label="ExtensionTargets">
81  </ImportGroup>
82</Project>
Note: See TracBrowser for help on using the repository browser.