| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 | @ECHO OFFREM StarPU --- Runtime system for heterogeneous multicore architectures.REMREM Copyright (C) 2013, 2014  Centre National de la Recherche ScientifiqueREMREM StarPU is free software; you can redistribute it and/or modifyREM it under the terms of the GNU Lesser General Public License as published byREM the Free Software Foundation; either version 2.1 of the License, or (atREM your option) any later version.REMREM StarPU is distributed in the hope that it will be useful, butREM WITHOUT ANY WARRANTY; without even the implied warranty ofREM MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.REMREM See the GNU Lesser General Public License in COPYING.LGPL for more details.TITLE MSVC StarPU ExecutionECHO.ECHO MSVC StarPU ExecutionIF NOT EXIST %STARPU_PATH%\AUTHORS GOTO starpunotfoundECHO.ECHO %STARPU_PATH%IF "%1" == "" GOTO invalidparamIF NOT EXIST %1 GOTO invalidparamCOPY %1 starpu\starpu_appli.cFOR %%F IN (%STARPU_PATH%\bin\*dll) DO COPY %%F starpu\%%~nFFOR %%F IN (%STARPU_PATH%\bin\*dll) DO COPY %%F starpuCOPY c:\MinGW\bin\pthreadGC2.dll starpuIF EXIST Debug RMDIR /S /Q DebugIF EXIST starpu\Debug RMDIR /S /Q starpu\Debug"C:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\IDE\VCExpress.exe" starpu.slnGOTO end:invalidparam  ECHO.  ECHO Syntax error. You need to give the name of a StarPU application  GOTO end:starpunotfound  ECHO.  ECHO You need to set the variable STARPU_PATH to a valid StarPU installation directory  GOTO end:end
 |