Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
07/03/14 10:15:37 (10 years ago)
Author:
ascheibe
Message:

#2207

  • added linux prebuild event for scripting
  • added linux prebuild event for grammatical evolution and cleaned up project file
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Problems.GrammaticalEvolution/3.3/HeuristicLab.Problems.GrammaticalEvolution-3.3.csproj

    r10988 r11078  
    260260    </ProjectReference>
    261261  </ItemGroup>
    262   <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
    263   <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
     262  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> 
     263    <PropertyGroup>
     264    <PreBuildEvent Condition=" '$(OS)' == 'Windows_NT' ">set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
     265set ProjectDir=$(ProjectDir)
     266set SolutionDir=$(SolutionDir)
     267set Outdir=$(Outdir)
     268
     269call PreBuildEvent.cmd
     270</PreBuildEvent>
     271    <PreBuildEvent Condition=" '$(OS)' != 'Windows_NT' ">
     272export ProjectDir=$(ProjectDir)
     273export SolutionDir=$(SolutionDir)
     274
     275$SolutionDir/PreBuildEvent.sh
     276</PreBuildEvent>
     277  </PropertyGroup>
     278<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
    264279       Other similar extension points exist, see Microsoft.Common.targets.
    265280  <Target Name="BeforeBuild">
     
    267282  <Target Name="AfterBuild">
    268283  </Target>
    269   -->
    270   <PropertyGroup>
    271     <PreBuildEvent>set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
    272 set ProjectDir=$(ProjectDir)
    273 set SolutionDir=$(SolutionDir)
    274 set Outdir=$(Outdir)
    275 
    276 call PreBuildEvent.cmd</PreBuildEvent>
    277   </PropertyGroup>
    278   <PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
    279     <CheckForOverflowUnderflow>False</CheckForOverflowUnderflow>
    280     <BaseIntermediateOutputPath>obj\</BaseIntermediateOutputPath>
    281     <StartAction>Program</StartAction>
    282     <StartProgram>..\..\..\trunk\sources\bin\HeuristicLab 3.3.exe</StartProgram>
    283   </PropertyGroup>
    284   <PropertyGroup Condition=" '$(Platform)' == 'AnyCPU' ">
    285     <BaseAddress>4194304</BaseAddress>
    286     <PlatformTarget>AnyCPU</PlatformTarget>
    287     <RegisterForComInterop>False</RegisterForComInterop>
    288     <GenerateSerializationAssemblies>Auto</GenerateSerializationAssemblies>
    289   </PropertyGroup>
    290   <PropertyGroup Condition=" '$(Platform)' == 'x64' ">
    291     <PlatformTarget>x64</PlatformTarget>
    292   </PropertyGroup>
    293   <PropertyGroup Condition=" '$(Platform)' == 'x86' ">
    294     <PlatformTarget>x86</PlatformTarget>
    295   </PropertyGroup>
     284  --> 
    296285</Project>
Note: See TracChangeset for help on using the changeset viewer.