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

    r269 r564  
    5252    <WarningLevel>4</WarningLevel>
    5353    <DocumentationFile>bin\Release\HeuristicLab.Scheduling.JSSP.XML</DocumentationFile>
     54  </PropertyGroup>
     55  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
     56    <DebugSymbols>true</DebugSymbols>
     57    <OutputPath>bin\x86\Debug\</OutputPath>
     58    <DefineConstants>DEBUG;TRACE</DefineConstants>
     59    <DebugType>pdbonly</DebugType>
     60    <PlatformTarget>x86</PlatformTarget>
     61    <ErrorReport>prompt</ErrorReport>
     62  </PropertyGroup>
     63  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
     64    <OutputPath>bin\x86\Release\</OutputPath>
     65    <DefineConstants>TRACE</DefineConstants>
     66    <DocumentationFile>bin\Release\HeuristicLab.Scheduling.JSSP.XML</DocumentationFile>
     67    <Optimize>true</Optimize>
     68    <DebugType>pdbonly</DebugType>
     69    <PlatformTarget>x86</PlatformTarget>
     70    <ErrorReport>prompt</ErrorReport>
    5471  </PropertyGroup>
    5572  <ItemGroup>
     
    163180  -->
    164181  <PropertyGroup>
    165     <PreBuildEvent>cmd /c ..\..\..\PreBuildEvent.cmd</PreBuildEvent>
     182    <PreBuildEvent>cmd /c $(SolutionDir)PreBuildEvent.cmd $(ProjectDir)</PreBuildEvent>
    166183  </PropertyGroup>
    167184</Project>
Note: See TracChangeset for help on using the changeset viewer.