Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab/CopyAssemblies.cmd @ 2603

Last change on this file since 2603 was 2603, checked in by gkronber, 14 years ago

Fixed (?) problem in post-build scripts when the project directory contains a space. #799

File size: 993 bytes
Line 
1FOR /F "skip=1 tokens=1-2 delims=: usebackq" %%G IN ("%ProjectDir%\Files.txt") DO copy "%SolutionDir%\%%G\%Outdir%\%%H" .\
2
3
4echo "Platform: %Platform%, architecture: %PROCESSOR_ARCHITECTURE%"
5if "%Platform%" == "x86" (   
6  FOR /F "skip=1 tokens=* usebackq" %%G IN ("%ProjectDir%\Files.x86.txt") DO copy "%SolutionDir%\%%G" .\
7) else if "%Platform%" == "x64" (
8  FOR /F "skip=1 tokens=* usebackq" %%G IN ("%ProjectDir%\Files.x64.txt") DO copy "%SolutionDir%\%%G" .\
9) else if "%Platform%" == "AnyCPU" (
10  if "%PROCESSOR_ARCHITECTURE%" == "x64" (
11  FOR /F "skip=1 tokens=* usebackq" %%G IN ("%ProjectDir%\Files.x64.txt") DO copy "%SolutionDir%\%%G" .\
12  ) else if "%PROCESSOR_ARCHITECTURE%" == "x86" (
13  FOR /F "skip=1 tokens=* usebackq" %%G IN ("%ProjectDir%\Files.x86.txt") DO copy "%SolutionDir%\%%G" .\
14  ) else (
15    echo "ERROR: unknown architecture: "%PROCESSOR_ARCHITECTURE%"
16  )
17) else (
18  echo "ERROR: unknown platform: %Platform%"
19)
20
21echo "CopyAssemblies done"
Note: See TracBrowser for help on using the repository browser.