Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/30/09 14:20:09 (15 years ago)
Author:
gkronber
Message:

xcopy is a bitch, using plain old copy instead. #460

File:
1 edited

Legend:

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

    r1454 r1464  
    8585echo "Platform: %Platform%, architecture: %PROCESSOR_ARCHITECTURE%"
    8686if "%Platform%" == "x86" (   
    87   xcopy "%SolutionDir%\HeuristicLab.SQLite\System.Data.SQLite.dll" .\plugins
     87  copy "%SolutionDir%\HeuristicLab.SQLite\System.Data.SQLite.dll" .\plugins
    8888) else if "%Platform%" == "x64" (
    89   xcopy "%SolutionDir%\HeuristicLab.SQLite\System.Data.SQLite.x64.dll" .\plugins\System.Data.SQLite.dll
     89  copy "%SolutionDir%\HeuristicLab.SQLite\System.Data.SQLite.x64.dll" .\plugins\System.Data.SQLite.dll
    9090) else if "%Platform%" == "AnyCPU" (
    9191  if "%PROCESSOR_ARCHITECTURE%" == "x64" (
    92     xcopy "%SolutionDir%\HeuristicLab.SQLite\System.Data.SQLite.x64.dll" .\plugins\System.Data.SQLite.dll
     92    copy "%SolutionDir%\HeuristicLab.SQLite\System.Data.SQLite.x64.dll" .\plugins\System.Data.SQLite.dll
    9393  ) else if "%PROCESSOR_ARCHITECTURE%" == "x86" (
    94     xcopy "%SolutionDir%\HeuristicLab.SQLite\System.Data.SQLite.dll" .\plugins
     94    copy "%SolutionDir%\HeuristicLab.SQLite\System.Data.SQLite.dll" .\plugins
    9595  ) else (
    9696    echo "ERROR: unknown architecture: "%PROCESSOR_ARCHITECTURE%"
Note: See TracChangeset for help on using the changeset viewer.