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

    r500 r564  
    3333    <WarningLevel>4</WarningLevel>
    3434    <DocumentationFile>bin\Release\HeuristicLab.Grid.XML</DocumentationFile>
     35  </PropertyGroup>
     36  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
     37    <DebugSymbols>true</DebugSymbols>
     38    <OutputPath>bin\x86\Debug\</OutputPath>
     39    <DefineConstants>DEBUG;TRACE</DefineConstants>
     40    <DebugType>full</DebugType>
     41    <PlatformTarget>x86</PlatformTarget>
     42    <ErrorReport>prompt</ErrorReport>
     43  </PropertyGroup>
     44  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
     45    <OutputPath>bin\x86\Release\</OutputPath>
     46    <DefineConstants>TRACE</DefineConstants>
     47    <DocumentationFile>bin\Release\HeuristicLab.Grid.XML</DocumentationFile>
     48    <Optimize>true</Optimize>
     49    <DebugType>pdbonly</DebugType>
     50    <PlatformTarget>x86</PlatformTarget>
     51    <ErrorReport>prompt</ErrorReport>
    3552  </PropertyGroup>
    3653  <ItemGroup>
     
    118135  -->
    119136  <PropertyGroup>
    120     <PreBuildEvent>cmd /c ..\..\..\PreBuildEvent.cmd</PreBuildEvent>
     137    <PreBuildEvent>cmd /c $(SolutionDir)PreBuildEvent.cmd $(ProjectDir)</PreBuildEvent>
    121138  </PropertyGroup>
    122139</Project>
Note: See TracChangeset for help on using the changeset viewer.