Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
10/05/11 14:19:10 (13 years ago)
Author:
ascheibe
Message:

#1653 updated CustomPostBuildTemplated

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab/3.3/CustomPostBuildTemplate_UpdateLocalInstallation.cmd

    r3849 r6867  
    55copy HeuristicLab.PluginInfrastructure-3.3.dll "%target%"
    66
    7 FOR /F "skip=1 tokens=1-2 delims=: usebackq" %%G IN ("%ProjectDir%\Files.txt") DO copy "%SolutionDir%\%%G\%Outdir%\%%H" "%target%" >nul
     7FOR /F "skip=1 tokens=1-2 delims=: usebackq" %%G IN ("%ProjectDir%\Files.txt") DO copy "%Outdir%\%%H" "%target%" >nul
    88
    99
    1010echo "Platform: %Platform%, architecture: %PROCESSOR_ARCHITECTURE%"
    1111if "%Platform%" == "x86" (   
    12   FOR /F "skip=1 tokens=* usebackq" %%G IN ("%ProjectDir%\Files.x86.txt") DO copy "%SolutionDir%\%%G" "%target%" >nul
     12  FOR /F "skip=1 tokens=* usebackq" %%G IN ("%ProjectDir%\Files.x86.txt") DO copy "%Outdir%\%%G" "%target%" >nul
    1313) else if "%Platform%" == "x64" (
    14   FOR /F "skip=1 tokens=* usebackq" %%G IN ("%ProjectDir%\Files.x64.txt") DO copy "%SolutionDir%\%%G" "%target%" >nul
     14  FOR /F "skip=1 tokens=* usebackq" %%G IN ("%ProjectDir%\Files.x64.txt") DO copy "%Outdir%\%%G" "%target%" >nul
    1515) else if "%Platform%" == "AnyCPU" (
    1616  if "%PROCESSOR_ARCHITECTURE%" == "x64" (
    17   FOR /F "skip=1 tokens=* usebackq" %%G IN ("%ProjectDir%\Files.x64.txt") DO copy "%SolutionDir%\%%G" "%target%" >nul
     17  FOR /F "skip=1 tokens=* usebackq" %%G IN ("%ProjectDir%\Files.x64.txt") DO copy "%Outdir%\%%G" "%target%" >nul
    1818  ) else if "%PROCESSOR_ARCHITECTURE%" == "x86" (
    19   FOR /F "skip=1 tokens=* usebackq" %%G IN ("%ProjectDir%\Files.x86.txt") DO copy "%SolutionDir%\%%G" "%target%" >nul
     19  FOR /F "skip=1 tokens=* usebackq" %%G IN ("%ProjectDir%\Files.x86.txt") DO copy "%Outdir%\%%G" "%target%" >nul
    2020  ) else (
    2121    echo "ERROR: unknown architecture: "%PROCESSOR_ARCHITECTURE%"
Note: See TracChangeset for help on using the changeset viewer.