Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
01/05/10 17:19:07 (15 years ago)
Author:
gkronber
Message:

Changed configuration so that file lists are not copied to output directory and added script to create a console application. #799

File:
1 edited

Legend:

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

    r2598 r2601  
    55copy HeuristicLab.PluginInfrastructure.dll "%target%"
    66
    7 FOR /F "skip=1 tokens=1-2 delims=:" %%G IN (Files.txt) DO copy "%SolutionDir%\%%G\%Outdir%\%%H" "%target%"
     7FOR /F "skip=1 tokens=1-2 delims=:" %%G IN (%ProjectDir%\Files.txt) DO copy "%SolutionDir%\%%G\%Outdir%\%%H" "%target%"
    88
    99
    1010echo "Platform: %Platform%, architecture: %PROCESSOR_ARCHITECTURE%"
    1111if "%Platform%" == "x86" (   
    12   FOR /F "skip=1 tokens=*" %%G IN (Files.x86.txt) DO copy "%SolutionDir%\%%G" "%target%"
     12  FOR /F "skip=1 tokens=*" %%G IN (%ProjectDir%\Files.x86.txt) DO copy "%SolutionDir%\%%G" "%target%"
    1313) else if "%Platform%" == "x64" (
    14   FOR /F "skip=1 tokens=*" %%G IN (Files.x64.txt) DO copy "%SolutionDir%\%%G" "%target%"
     14  FOR /F "skip=1 tokens=*" %%G IN (%ProjectDir%\Files.x64.txt) DO copy "%SolutionDir%\%%G" "%target%"
    1515) else if "%Platform%" == "AnyCPU" (
    1616  if "%PROCESSOR_ARCHITECTURE%" == "x64" (
    17   FOR /F "skip=1 tokens=*" %%G IN (Files.x64.txt) DO copy "%SolutionDir%\%%G" "%target%"
     17  FOR /F "skip=1 tokens=*" %%G IN (%ProjectDir%\Files.x64.txt) DO copy "%SolutionDir%\%%G" "%target%"
    1818  ) else if "%PROCESSOR_ARCHITECTURE%" == "x86" (
    19   FOR /F "skip=1 tokens=*" %%G IN (Files.x86.txt) DO copy "%SolutionDir%\%%G" "%target%"
     19  FOR /F "skip=1 tokens=*" %%G IN (%ProjectDir%\Files.x86.txt) DO copy "%SolutionDir%\%%G" "%target%"
    2020  ) else (
    2121    echo "ERROR: unknown architecture: "%PROCESSOR_ARCHITECTURE%"
     
    2424  echo "ERROR: unknown platform: %Platform%"
    2525)
     26
     27echo "CustomPostBuild done"
Note: See TracChangeset for help on using the changeset viewer.