- Timestamp:
- 01/05/10 19:10:29 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab/CustomPostBuildTemplate_UpdateLocalInstallation.cmd
r2603 r2604 6 6 copy HeuristicLab.PluginInfrastructure.dll "%target%" 7 7 8 FOR /F "skip=1 tokens=1-2 delims=: " %%G IN (%ProjectDir%\Files.txt) DO copy "%SolutionDir%\%%G\%Outdir%\%%H" "%target%"8 FOR /F "skip=1 tokens=1-2 delims=: usebackq" %%G IN ("%ProjectDir%\Files.txt") DO copy "%SolutionDir%\%%G\%Outdir%\%%H" "%target%" 9 9 10 10 11 11 echo "Platform: %Platform%, architecture: %PROCESSOR_ARCHITECTURE%" 12 12 if "%Platform%" == "x86" ( 13 FOR /F "skip=1 tokens=* " %%G IN (%ProjectDir%\Files.x86.txt) DO copy "%SolutionDir%\%%G" "%target%"13 FOR /F "skip=1 tokens=* usebackq" %%G IN ("%ProjectDir%\Files.x86.txt") DO copy "%SolutionDir%\%%G" "%target%" 14 14 ) else if "%Platform%" == "x64" ( 15 FOR /F "skip=1 tokens=* " %%G IN (%ProjectDir%\Files.x64.txt) DO copy "%SolutionDir%\%%G" "%target%"15 FOR /F "skip=1 tokens=* usebackq" %%G IN ("%ProjectDir%\Files.x64.txt") DO copy "%SolutionDir%\%%G" "%target%" 16 16 ) else if "%Platform%" == "AnyCPU" ( 17 17 if "%PROCESSOR_ARCHITECTURE%" == "x64" ( 18 FOR /F "skip=1 tokens=* " %%G IN (%ProjectDir%\Files.x64.txt) DO copy "%SolutionDir%\%%G" "%target%"18 FOR /F "skip=1 tokens=* usebackq" %%G IN ("%ProjectDir%\Files.x64.txt") DO copy "%SolutionDir%\%%G" "%target%" 19 19 ) else if "%PROCESSOR_ARCHITECTURE%" == "x86" ( 20 FOR /F "skip=1 tokens=* " %%G IN (%ProjectDir%\Files.x86.txt) DO copy "%SolutionDir%\%%G" "%target%"20 FOR /F "skip=1 tokens=* usebackq" %%G IN ("%ProjectDir%\Files.x86.txt") DO copy "%SolutionDir%\%%G" "%target%" 21 21 ) else ( 22 22 echo "ERROR: unknown architecture: "%PROCESSOR_ARCHITECTURE%"
Note: See TracChangeset
for help on using the changeset viewer.