Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
09/07/12 16:26:07 (12 years ago)
Author:
ascheibe
Message:

#1937 added pre- and postbuild events for mono

File:
1 edited

Legend:

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

    r7063 r8600  
    198198  -->
    199199  <PropertyGroup>
    200     <PreBuildEvent>set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
     200   <PreBuildEvent Condition=" '$(OS)' == 'Windows_NT' ">set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
    201201set ProjectDir=$(ProjectDir)
    202202set SolutionDir=$(SolutionDir)
    203203
    204204call PreBuildEvent.cmd</PreBuildEvent>
    205     <PostBuildEvent>set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
     205<PreBuildEvent Condition=" '$(OS)' != 'Windows_NT' ">
     206export ProjectDir=$(ProjectDir)
     207export SolutionDir=$(SolutionDir)
     208
     209$SolutionDir/PreBuildEvent.sh
     210</PreBuildEvent>
     211<PostBuildEvent Condition=" '$(OS)' == 'Windows_NT' ">set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
    206212set ProjectDir=$(ProjectDir)
    207213set SolutionDir=$(SolutionDir)
     
    212218call "$(SolutionDir)MergeConfigs.cmd"
    213219if exist "%25ProjectDir%25CustomPostBuild.cmd" call CustomPostBuild.cmd</PostBuildEvent>
     220<PostBuildEvent Condition=" '$(OS)' != 'Windows_NT' ">
     221export Outdir=$(Outdir)
     222export ProjectDir=$(ProjectDir)
     223export SolutionDir=$(SolutionDir)
     224
     225$SolutionDir/MergeConfigs.sh
     226</PostBuildEvent>
    214227  </PropertyGroup>
    215228</Project>
Note: See TracChangeset for help on using the changeset viewer.