You are not logged in.
Hi,
FindLAPACK stopped working for me after a upgrade of cmake. I'm not sure if this
is an arch or upstream error. Does someone have the same issue?
Here is a small test CMakeLists.txt file. It works with cmake 2.8.5.
cmake_minimum_required(VERSION 2.8)
project(find_test)
# add LAPACK libs
find_package(LAPACK REQUIRED)
### source files
set(SRC main.cpp)
add_executable(find_test ${SRC})
target_link_libraries(find_test ${LAPACK_LIBRARIES})(main.cpp is just a hello world program.)
Offline