Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab 3.3/3.3/CopyAssemblies.cmd @ 3833

Last change on this file since 3833 was 3833, checked in by swagner, 14 years ago

Restructured repository in preparation of the HeuristicLab 3.3.0 release (#1000)

File size: 1.0 KB
Line 
1FOR /F "skip=1 tokens=1-2 delims=: usebackq" %%G IN ("%ProjectDir%\Files.txt") DO echo "%%H" && 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 echo "%%G" && copy "%SolutionDir%\%%G" .\
7) else if "%Platform%" == "x64" (
8  FOR /F "skip=1 tokens=* usebackq" %%G IN ("%ProjectDir%\Files.x64.txt") DO echo "%%G" && 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 echo "%%G" && copy "%SolutionDir%\%%G" .\
12  ) else if "%PROCESSOR_ARCHITECTURE%" == "x86" (
13  FOR /F "skip=1 tokens=* usebackq" %%G IN ("%ProjectDir%\Files.x86.txt") DO echo "%%G" && 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.