Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Analysis.AlgorithmBehavior/liblrs/liblrs/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.8 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="Debug|x64">
9      <Configuration>Debug</Configuration>
10      <Platform>x64</Platform>
11    </ProjectConfiguration>
12    <ProjectConfiguration Include="Release|Win32">
13      <Configuration>Release</Configuration>
14      <Platform>Win32</Platform>
15    </ProjectConfiguration>
16    <ProjectConfiguration Include="Release|x64">
17      <Configuration>Release</Configuration>
18      <Platform>x64</Platform>
19    </ProjectConfiguration>
20  </ItemGroup>
21  <ItemGroup>
22    <ClCompile Include="extfunc.c" />
23    <ClCompile Include="lrslib.c" />
24    <ClCompile Include="lrsmp.c" />
25  </ItemGroup>
26  <ItemGroup>
27    <ClInclude Include="extfunc.h" />
28    <ClInclude Include="lrslib.h" />
29    <ClInclude Include="lrsmp.h" />
30  </ItemGroup>
31  <PropertyGroup Label="Globals">
32    <ProjectGuid>{2FDA9BB3-C904-4A88-BDD7-3F6B3B65C7F7}</ProjectGuid>
33    <RootNamespace>liblrs</RootNamespace>
34  </PropertyGroup>
35  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
36  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
37    <ConfigurationType>StaticLibrary</ConfigurationType>
38    <UseDebugLibraries>true</UseDebugLibraries>
39    <PlatformToolset>v110</PlatformToolset>
40    <CharacterSet>MultiByte</CharacterSet>
41  </PropertyGroup>
42  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
43    <ConfigurationType>StaticLibrary</ConfigurationType>
44    <UseDebugLibraries>false</UseDebugLibraries>
45    <PlatformToolset>v110</PlatformToolset>
46    <WholeProgramOptimization>true</WholeProgramOptimization>
47    <CharacterSet>MultiByte</CharacterSet>
48  </PropertyGroup>
49  <PropertyGroup Label="Configuration" Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
50    <PlatformToolset>v110</PlatformToolset>
51    <ConfigurationType>DynamicLibrary</ConfigurationType>
52  </PropertyGroup>
53  <PropertyGroup Label="Configuration" Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
54    <PlatformToolset>v110</PlatformToolset>
55    <ConfigurationType>DynamicLibrary</ConfigurationType>
56  </PropertyGroup>
57  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
58  <ImportGroup Label="ExtensionSettings">
59  </ImportGroup>
60  <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
61    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
62  </ImportGroup>
63  <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
64    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
65  </ImportGroup>
66  <PropertyGroup Label="UserMacros" />
67  <PropertyGroup />
68  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
69    <ClCompile>
70      <WarningLevel>Level3</WarningLevel>
71      <Optimization>Disabled</Optimization>
72      <SDLCheck>false</SDLCheck>
73      <CompileAs>Default</CompileAs>
74    </ClCompile>
75    <Link>
76      <GenerateDebugInformation>true</GenerateDebugInformation>
77    </Link>
78  </ItemDefinitionGroup>
79  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
80    <ClCompile>
81      <WarningLevel>Level3</WarningLevel>
82      <Optimization>MaxSpeed</Optimization>
83      <FunctionLevelLinking>true</FunctionLevelLinking>
84      <IntrinsicFunctions>true</IntrinsicFunctions>
85      <SDLCheck>false</SDLCheck>
86    </ClCompile>
87    <Link>
88      <GenerateDebugInformation>true</GenerateDebugInformation>
89      <EnableCOMDATFolding>true</EnableCOMDATFolding>
90      <OptimizeReferences>true</OptimizeReferences>
91    </Link>
92  </ItemDefinitionGroup>
93  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
94    <ClCompile>
95      <PreprocessorDefinitions>_WINDLL;%(PreprocessorDefinitions);B64</PreprocessorDefinitions>
96    </ClCompile>
97  </ItemDefinitionGroup>
98  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
99    <ClCompile>
100      <PreprocessorDefinitions>_WINDLL;%(PreprocessorDefinitions);B64</PreprocessorDefinitions>
101    </ClCompile>
102  </ItemDefinitionGroup>
103  <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
104  <ImportGroup Label="ExtensionTargets">
105  </ImportGroup>
106</Project>
Note: See TracBrowser for help on using the repository browser.