| 1234567891011121314151617181920212223242526272829303132333435363738394041 | @ECHO OFFREM StarPU --- Runtime system for heterogeneous multicore architectures.REMREM Copyright (C) 2013-2017                                CNRSREMREM 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.REMTITLE MSVC StarPU EnvironmentECHO.ECHO MSVC StarPU EnvironmentIF NOT EXIST %STARPU_PATH%\AUTHORS GOTO starpunotfoundECHO.ECHO Setting environment from %STARPU_PATH%set STARPU_LIBDIR=%STARPU_PATH%/libset STARPU_INCLUDEDIR=%STARPU_PATH%/includeset STARPU_CFLAGS=/I%STARPU_INCLUDEDIR%\starpu\@STARPU_EFFECTIVE_VERSION@ @STARPU_CUDA_CPPFLAGS@ /I%HWLOC%\includeset STARPU_LDFLAGS=/link %STARPU_PATH%\lib\libstarpu-@STARPU_EFFECTIVE_VERSION@.libGOTO end:starpunotfound  ECHO.  ECHO You need to set the variable STARPU_PATH to a valid StarPU installation directory  exit /B 1  GOTO end:end
 |