You are not logged in.

#1 2011-10-08 14:32:37

guini
Member
Registered: 2009-05-13
Posts: 3

cmake 2.8.6-1 FindLAPACK not working

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

Board footer

Powered by FluxBB