Browse Source

Native: OpenBLAS lib directory via OPENBLASPATH environment variable

cuda
Christoph Ruegg 12 years ago
parent
commit
5ba94f0963
  1. 7
      src/NativeProviders/Windows/OpenBLAS/OpenBLASWrapper.vcxproj

7
src/NativeProviders/Windows/OpenBLAS/OpenBLASWrapper.vcxproj

@ -62,9 +62,10 @@
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
</ImportGroup>
<PropertyGroup Label="UserMacros">
<OpenBLASIncludeDir>$(ProjectDir)..\..\..\..\..\libs\OpenBLAS\include\</OpenBLASIncludeDir>
<OpenBLASLibDir>$(ProjectDir)..\..\..\..\..\libs\OpenBLAS\x86\</OpenBLASLibDir>
<OpenBLASLibDir_x64>$(ProjectDir)..\..\..\..\..\libs\OpenBLAS\x64\</OpenBLASLibDir_x64>
<OpenBlasPath Condition="'$(OPENBLASPATH)' == ''">$(ProjectDir)..\..\..\..\..\libs\OpenBLAS</OpenBlasPath>
<OpenBLASIncludeDir>$(OpenBlasPath)\include\</OpenBLASIncludeDir>
<OpenBLASLibDir>$(OpenBlasPath)\x86\</OpenBLASLibDir>
<OpenBLASLibDir_x64>$(OpenBlasPath)\x64\</OpenBLASLibDir_x64>
</PropertyGroup>
<PropertyGroup>
<_ProjectFileVersion>11.0.50727.1</_ProjectFileVersion>

Loading…
Cancel
Save