add CMake option to force usage of MKL while default is fftw

This commit is contained in:
Andre Puschmann 2019-11-28 11:59:24 +01:00
parent 78dd9d7854
commit 31d40304ff
1 changed files with 5 additions and 4 deletions

View File

@ -85,6 +85,7 @@ option(ENABLE_TIDY "Enable clang tidy" OFF)
option(USE_LTE_RATES "Use standard LTE sampling rates" OFF)
option(USE_GLIBC_IPV6 "Use glibc's own ipv6.h" ON)
option(USE_MKL "Use MKL instead of fftw" OFF)
if(${CMAKE_SYSTEM_PROCESSOR} MATCHES "aarch64")
set(GCC_ARCH armv8-a CACHE STRING "GCC compile for specific architecture.")
@ -117,12 +118,12 @@ endif()
find_package(Threads REQUIRED)
# FFT
find_package(MKL)
if(MKL_FOUND)
if(USE_MKL)
find_package(MKL REQUIRED)
include_directories(${MKL_INCLUDE_DIRS})
link_directories(${MKL_LIBRARY_DIRS})
set(FFT_LIBRARIES "${MKL_STATIC_LIBRARIES}") # Static by default
else(MKL_FOUND)
else(USE_MKL)
find_package(FFTW3F REQUIRED)
if(FFTW3F_FOUND)
include_directories(${FFTW3F_INCLUDE_DIRS})
@ -134,7 +135,7 @@ else(MKL_FOUND)
endif(BUILD_STATIC)
message(STATUS "FFT_LIBRARIES: " ${FFT_LIBRARIES})
endif(FFTW3F_FOUND)
endif(MKL_FOUND)
endif(USE_MKL)
# Crypto
find_package(Polarssl)