Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
12/06/13 20:45:07 (10 years ago)
Author:
ascheibe
Message:

#1886

  • moved lrs code into analyzer project
  • added lrs performance test
  • moved performance tests into an own project
  • don't use 64 bit number format of lrs as it does not work correctly
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.Analysis.AlgorithmBehavior/liblrs/ctest_liblrs/ctest_liblrs.vcxproj

    r10198 r10200  
    66      <Platform>Win32</Platform>
    77    </ProjectConfiguration>
     8    <ProjectConfiguration Include="Debug|x64">
     9      <Configuration>Debug</Configuration>
     10      <Platform>x64</Platform>
     11    </ProjectConfiguration>
    812    <ProjectConfiguration Include="Release|Win32">
    913      <Configuration>Release</Configuration>
    1014      <Platform>Win32</Platform>
     15    </ProjectConfiguration>
     16    <ProjectConfiguration Include="Release|x64">
     17      <Configuration>Release</Configuration>
     18      <Platform>x64</Platform>
    1119    </ProjectConfiguration>
    1220  </ItemGroup>
     
    2230    <CharacterSet>MultiByte</CharacterSet>
    2331  </PropertyGroup>
     32  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
     33    <ConfigurationType>Application</ConfigurationType>
     34    <UseDebugLibraries>true</UseDebugLibraries>
     35    <PlatformToolset>v110</PlatformToolset>
     36    <CharacterSet>MultiByte</CharacterSet>
     37  </PropertyGroup>
    2438  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
     39    <ConfigurationType>Application</ConfigurationType>
     40    <UseDebugLibraries>false</UseDebugLibraries>
     41    <PlatformToolset>v110</PlatformToolset>
     42    <WholeProgramOptimization>true</WholeProgramOptimization>
     43    <CharacterSet>MultiByte</CharacterSet>
     44  </PropertyGroup>
     45  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
    2546    <ConfigurationType>Application</ConfigurationType>
    2647    <UseDebugLibraries>false</UseDebugLibraries>
     
    3556    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
    3657  </ImportGroup>
     58  <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets">
     59    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
     60  </ImportGroup>
    3761  <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
     62    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
     63  </ImportGroup>
     64  <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="PropertySheets">
    3865    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
    3966  </ImportGroup>
     
    4471    <ReferencePath>$(SolutionDir)Debug;$(ReferencePath)</ReferencePath>
    4572  </PropertyGroup>
     73  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
     74    <IncludePath>$(SolutionDir);$(IncludePath)</IncludePath>
     75    <LibraryPath>$(SolutionDir)x64\Debug;$(LibraryPath)</LibraryPath>
     76    <ReferencePath>$(SolutionDir)Debug;$(ReferencePath)</ReferencePath>
     77  </PropertyGroup>
    4678  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
    4779    <IncludePath>$(SolutionDir);$(IncludePath)</IncludePath>
    4880    <LibraryPath>$(SolutionDir)\Release;$(LibraryPath)</LibraryPath>
    4981  </PropertyGroup>
     82  <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
     83    <IncludePath>$(SolutionDir);$(IncludePath)</IncludePath>
     84    <LibraryPath>$(SolutionDir)\Release;$(LibraryPath)</LibraryPath>
     85  </PropertyGroup>
    5086  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
     87    <ClCompile>
     88      <WarningLevel>Level3</WarningLevel>
     89      <Optimization>Disabled</Optimization>
     90      <SDLCheck>true</SDLCheck>
     91    </ClCompile>
     92    <Link>
     93      <GenerateDebugInformation>true</GenerateDebugInformation>
     94      <AdditionalDependencies>liblrs.lib;%(AdditionalDependencies)</AdditionalDependencies>
     95    </Link>
     96  </ItemDefinitionGroup>
     97  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
    5198    <ClCompile>
    5299      <WarningLevel>Level3</WarningLevel>
     
    74121    </Link>
    75122  </ItemDefinitionGroup>
     123  <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
     124    <ClCompile>
     125      <WarningLevel>Level3</WarningLevel>
     126      <Optimization>MaxSpeed</Optimization>
     127      <FunctionLevelLinking>true</FunctionLevelLinking>
     128      <IntrinsicFunctions>true</IntrinsicFunctions>
     129      <SDLCheck>true</SDLCheck>
     130    </ClCompile>
     131    <Link>
     132      <GenerateDebugInformation>true</GenerateDebugInformation>
     133      <EnableCOMDATFolding>true</EnableCOMDATFolding>
     134      <OptimizeReferences>true</OptimizeReferences>
     135      <AdditionalDependencies>$(SolutionDir)Release\liblrs.lib;%(AdditionalDependencies)</AdditionalDependencies>
     136    </Link>
     137  </ItemDefinitionGroup>
    76138  <ItemGroup>
    77139    <ClCompile Include="main.cpp" />
Note: See TracChangeset for help on using the changeset viewer.