MKL library and CMAKELIST

已回答

I'm trying to link the mkl library that is included in the parallel studio xe 2019 package to a solution of a project using CMakeLists.txt, I'm getting the following error :

CMake Error at CMakeLists.txt:12 (find_package):
  By not providing "FindMKL.cmake" in CMAKE_MODULE_PATH this project has
  asked CMake to find a package configuration file provided by "MKL", but
  CMake did not find one

My CMakeLists.txt file looks like that:

cmake_minimum_required(VERSION 3.15)

project(untitled) set(CMAKE_CXX_STANDARD 14)

add_executable(untitled main.cpp)

set(MKL_DIR "/home/usr/intel/parallel_studio_xe_2019.5.075/compilers_and_libraries_2019/linux/mkl/") include_directories(SYSTEM ${MKL})

find_package(MKL REQUIRED)

if(MKL_FOUND)

include_directories(${MKL_INCLUDE_DIRS})

target_link_libraries(untitled ${MKL_CORE_LIBRARY})

else() message(WARNING "MKL libs not found")

endif()

Thank you

 
0

Hi!

It's a general CMake question, not related to CLion. Please take a look at https://github.com/openmeeg/findmkl_cmake, for example.

0

请先登录再写评论。