Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
10/29/13 14:23:04 (11 years ago)
Author:
mkommend
Message:

#2082: Improved error handling in Scilab evaluator and prepared the project files for MONO compilation.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.ExternalEvaluation Scientific/HeuristicLab.Problems.ParameterOptimization/3.3/HeuristicLab.Problems.ParameterOptimization.csproj

    r9691 r10094  
    101101  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
    102102  <PropertyGroup>
    103     <PreBuildEvent>set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
    104 set ProjectDir=$(ProjectDir)
    105 set SolutionDir=$(SolutionDir)
    106 set Outdir=$(Outdir)
     103    <PreBuildEvent Condition=" '$(OS)' == 'Windows_NT' ">
     104      set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
     105      set ProjectDir=$(ProjectDir)
     106      set SolutionDir=$(SolutionDir)
     107      set Outdir=$(Outdir)
    107108
    108 call PreBuildEvent.cmd
    109 </PreBuildEvent>
     109      call PreBuildEvent.cmd
     110    </PreBuildEvent>
     111    <PreBuildEvent Condition=" '$(OS)' != 'Windows_NT' ">
     112      export ProjectDir=$(ProjectDir)
     113      export SolutionDir=$(SolutionDir)
     114
     115      $SolutionDir/PreBuildEvent.sh
     116    </PreBuildEvent>
    110117  </PropertyGroup>
    111118  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Note: See TracChangeset for help on using the changeset viewer.