mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 09:32:06 +00:00
11 lines
334 B
CMake
11 lines
334 B
CMake
option (ENABLE_POCKETFFT "Enable pocketfft" ${ENABLE_LIBRARIES})
|
|
|
|
if (NOT ENABLE_POCKETFFT)
|
|
message(STATUS "Not using pocketfft")
|
|
return()
|
|
endif()
|
|
|
|
add_library(_pocketfft INTERFACE)
|
|
target_include_directories(_pocketfft INTERFACE ${ClickHouse_SOURCE_DIR}/contrib/pocketfft)
|
|
add_library(ch_contrib::pocketfft ALIAS _pocketfft)
|