I am trying to include Intel&#39;s MKL in my project by including the following in my CMakeLists.txt file:<div><br></div><div>set( ENV{BLA_VENDOR} &quot;Intel10_64lp&quot; )</div><div>find_package (LAPACK)<div><br></div><div>
Unfortunately, when I execute cmake I receive the following errors:</div><div>-- A library with BLAS API not found. Please specify library location.</div><div><div>-- LAPACK requires BLAS</div><div>-- A library with LAPACK API not found. Please specify library location.</div>
</div><div><br></div><div>If I instead use set( ENV{BLA_VENDOR} &quot;Apple&quot; ) in my CMakeLists.txt file, the Accelerate framework is successfully located. This, of course, leads me to believe that FindBLAS.cmake and/or FindLAPACK.cmake fail to locate my MKL install.</div>
<div><br></div><div>The contents of my DYLD_LIBRARY_PATH environment variable are: /opt/intel/composer_xe_2011_sp1.8.269/compiler/lib:/opt/intel/composer_xe_2011_sp1.8.269/compiler/lib/intel64:/opt/intel/composer_xe_2011_sp1.8.269/ipp/../compiler/lib:/opt/intel/composer_xe_2011_sp1.8.269/ipp/lib:/opt/intel/composer_xe_2011_sp1.8.269/compiler/lib:/opt/intel/composer_xe_2011_sp1.8.269/mkl/lib:/opt/intel/composer_xe_2011_sp1.8.269/tbb/lib</div>
<div><br></div><div>Is there anything special I need to do to get FindLAPACK to locate my install? Is there some way I can force cmake to give me more information to help debug this problem?</div><div><br></div><div>Thank you for your advice.</div>
<div><br></div><div>Best regards,</div><div>Andreas</div></div>