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.ExternalEvaluation.Scilab/3.3/HeuristicLab.Problems.ExternalEvaluation.Scilab-3.3.csproj

    r9690 r10094  
    169169  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
    170170  <PropertyGroup>
    171     <PreBuildEvent>set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
    172 set ProjectDir=$(ProjectDir)
    173 set SolutionDir=$(SolutionDir)
    174 set Outdir=$(Outdir)
     171    <PreBuildEvent Condition=" '$(OS)' == 'Windows_NT' ">
     172      set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
     173      set ProjectDir=$(ProjectDir)
     174      set SolutionDir=$(SolutionDir)
     175      set Outdir=$(Outdir)
    175176
    176 call PreBuildEvent.cmd
    177 </PreBuildEvent>
     177      call PreBuildEvent.cmd
     178    </PreBuildEvent>
     179    <PreBuildEvent Condition=" '$(OS)' != 'Windows_NT' ">
     180      export ProjectDir=$(ProjectDir)
     181      export SolutionDir=$(SolutionDir)
     182
     183      $SolutionDir/PreBuildEvent.sh
     184    </PreBuildEvent>
    178185  </PropertyGroup>
    179186  <!-- 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.