Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
09/14/08 08:12:50 (16 years ago)
Author:
gkronber
Message:

There are problems when compiling to a specific architecture (i.e. x86 instead of any cpu) because VS adds another directory level (bin/x86/Debug). Thus I improved the directory handling in the install scripts and build-events. Also changed the default architecture for the solution and all projects to x86. Hopefully this doesn't cause compilation problems for anyone. In this case just reverse merge the changeset.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Operators.Programmable/HeuristicLab.Operators.Programmable.csproj

    r51 r564  
    3535    <WarningLevel>4</WarningLevel>
    3636    <DocumentationFile>bin\Release\HeuristicLab.Operators.Programmable.XML</DocumentationFile>
     37  </PropertyGroup>
     38  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
     39    <DebugSymbols>true</DebugSymbols>
     40    <OutputPath>bin\x86\Debug\</OutputPath>
     41    <DefineConstants>DEBUG;TRACE</DefineConstants>
     42    <DebugType>full</DebugType>
     43    <PlatformTarget>x86</PlatformTarget>
     44    <ErrorReport>prompt</ErrorReport>
     45  </PropertyGroup>
     46  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
     47    <OutputPath>bin\x86\Release\</OutputPath>
     48    <DefineConstants>TRACE</DefineConstants>
     49    <DocumentationFile>bin\Release\HeuristicLab.Operators.Programmable.XML</DocumentationFile>
     50    <Optimize>true</Optimize>
     51    <DebugType>pdbonly</DebugType>
     52    <PlatformTarget>x86</PlatformTarget>
     53    <ErrorReport>prompt</ErrorReport>
    3754  </PropertyGroup>
    3855  <ItemGroup>
     
    91108  -->
    92109  <PropertyGroup>
    93     <PreBuildEvent>cmd /c ..\..\..\PreBuildEvent.cmd</PreBuildEvent>
     110    <PreBuildEvent>cmd /c $(SolutionDir)PreBuildEvent.cmd $(ProjectDir)</PreBuildEvent>
    94111  </PropertyGroup>
    95112</Project>
Note: See TracChangeset for help on using the changeset viewer.