Hello everyone,
As a non-experienced linux user I faces the following problem.
I have installed LAPACK, make lapack_testing does not show any errors, I see blas and lapack .lib files and even provided the built libraries for another software installation process.
However, now I need to install a software which uses cmake. And I got the following error:
CMake Error at /usr/share/cmake-3.5/Modules/FindBLAS.cmake:683 (message):
A required library with BLAS API not found. Please specify library
location.
Call Stack (most recent call first):
CMakeLists.txt:183 (find_package)
For me, it seems like cmake cannot find the installed blas and lapack, but I cannot work out what should I change in a standard FindBLAS.cmake file for that.

