Blame view
windows/variables.props.dev
1.75 KB
8dcb6dfcb first commit |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 |
<?xml version="1.0" encoding="utf-8"?> <Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> <ImportGroup Label="PropertySheets" /> <PropertyGroup Label="UserMacros"> <!-- Change the following paths so they are correct on your machine --> <!-- Do not modify anything before this line --> <MKLDIR>C:\Program Files (x86)\IntelSWTools\compilers_and_libraries\windows\mkl\</MKLDIR> <OPENBLASDIR>C:\Users\Yenda\Downloads\kaldi-svn\tools\OpenBLAS-v0.2.14-Win64-int32</OPENBLASDIR> <OPENFST>C:\Users\jtrmal\Documents\openfst\</OPENFST> <OPENFSTLIB>C:\Users\jtrmal\Documents\openfst\build64</OPENFSTLIB> <CUBDIR>c:\Users\jtrmal\Documents\cub\</CUBDIR> <NVTOOLSDIR>C:\Program FIles\NVIDIA Corporation\NvToolsExt\</NVTOOLSDIR> <!-- Do not modify anything after this line --> </PropertyGroup> <PropertyGroup /> <ItemDefinitionGroup /> <ItemGroup> <BuildMacro Include="OPENBLASDIR"> <Value>$(OPENBLASDIR)</Value> <EnvironmentVariable>true</EnvironmentVariable> </BuildMacro> <BuildMacro Include="OPENFST"> <Value>$(OPENFST)</Value> <EnvironmentVariable>true</EnvironmentVariable> </BuildMacro> <BuildMacro Include="OPENFSTLIB"> <Value>$(OPENFSTLIB)</Value> <EnvironmentVariable>true</EnvironmentVariable> </BuildMacro> <BuildMacro Include="MKLDIR"> <Value>$(MKLDIR)</Value> <EnvironmentVariable>true</EnvironmentVariable> </BuildMacro> <BuildMacro Include="CUBDIR"> <Value>$(CUBDIR)</Value> <EnvironmentVariable>true</EnvironmentVariable> </BuildMacro> <BuildMacro Include="NVTOOLSDIR"> <Value>$(NVTOOLSDIR)</Value> <EnvironmentVariable>true</EnvironmentVariable> </BuildMacro> </ItemGroup> </Project> |