Free cookie consent management tool by TermsFeed Policy Generator

Changeset 2637


Ignore:
Timestamp:
01/18/10 15:59:46 (14 years ago)
Author:
mkommend
Message:

added output of copied files in CopyAssemblies.cmd (ticket #799)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab/CopyAssemblies.cmd

    r2603 r2637  
    1 FOR /F "skip=1 tokens=1-2 delims=: usebackq" %%G IN ("%ProjectDir%\Files.txt") DO copy "%SolutionDir%\%%G\%Outdir%\%%H" .\
     1FOR /F "skip=1 tokens=1-2 delims=: usebackq" %%G IN ("%ProjectDir%\Files.txt") DO echo "%%H" && copy "%SolutionDir%\%%G\%Outdir%\%%H" .\
    22
    33
    44echo "Platform: %Platform%, architecture: %PROCESSOR_ARCHITECTURE%"
    55if "%Platform%" == "x86" (   
    6   FOR /F "skip=1 tokens=* usebackq" %%G IN ("%ProjectDir%\Files.x86.txt") DO copy "%SolutionDir%\%%G" .\
     6  FOR /F "skip=1 tokens=* usebackq" %%G IN ("%ProjectDir%\Files.x86.txt") DO echo "%%H" && copy "%SolutionDir%\%%G" .\
    77) else if "%Platform%" == "x64" (
    8   FOR /F "skip=1 tokens=* usebackq" %%G IN ("%ProjectDir%\Files.x64.txt") DO copy "%SolutionDir%\%%G" .\
     8  FOR /F "skip=1 tokens=* usebackq" %%G IN ("%ProjectDir%\Files.x64.txt") DO echo "%%H" && copy "%SolutionDir%\%%G" .\
    99) else if "%Platform%" == "AnyCPU" (
    1010  if "%PROCESSOR_ARCHITECTURE%" == "x64" (
    11   FOR /F "skip=1 tokens=* usebackq" %%G IN ("%ProjectDir%\Files.x64.txt") DO copy "%SolutionDir%\%%G" .\
     11  FOR /F "skip=1 tokens=* usebackq" %%G IN ("%ProjectDir%\Files.x64.txt") DO echo "%%H" && copy "%SolutionDir%\%%G" .\
    1212  ) else if "%PROCESSOR_ARCHITECTURE%" == "x86" (
    13   FOR /F "skip=1 tokens=* usebackq" %%G IN ("%ProjectDir%\Files.x86.txt") DO copy "%SolutionDir%\%%G" .\
     13  FOR /F "skip=1 tokens=* usebackq" %%G IN ("%ProjectDir%\Files.x86.txt") DO echo "%%H" && copy "%SolutionDir%\%%G" .\
    1414  ) else (
    1515    echo "ERROR: unknown architecture: "%PROCESSOR_ARCHITECTURE%"
Note: See TracChangeset for help on using the changeset viewer.