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