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.Constraints/HeuristicLab.Constraints.csproj

    r103 r564  
    3636    <DocumentationFile>bin\Release\HeuristicLab.Constraints.XML</DocumentationFile>
    3737  </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.Constraints.XML</DocumentationFile>
     50    <Optimize>true</Optimize>
     51    <DebugType>pdbonly</DebugType>
     52    <PlatformTarget>x86</PlatformTarget>
     53    <ErrorReport>prompt</ErrorReport>
     54  </PropertyGroup>
    3855  <ItemGroup>
    3956    <Reference Include="System" />
     
    215232  -->
    216233  <PropertyGroup>
    217     <PreBuildEvent>cmd /c ..\..\..\PreBuildEvent.cmd</PreBuildEvent>
     234    <PreBuildEvent>cmd /c $(SolutionDir)PreBuildEvent.cmd $(ProjectDir)</PreBuildEvent>
    218235  </PropertyGroup>
    219236</Project>
Note: See TracChangeset for help on using the changeset viewer.