ClickHouse/contrib/fastops-cmake/CMakeLists.txt

20 lines
723 B
CMake
Raw Normal View History

set(LIBRARY_DIR "${ClickHouse_SOURCE_DIR}/contrib/fastops")
2019-07-22 23:41:06 +00:00
set(SRCS "")
if(HAVE_AVX)
set (SRCS ${SRCS} "${LIBRARY_DIR}/fastops/avx/ops_avx.cpp")
set_source_files_properties("${LIBRARY_DIR}/fastops/avx/ops_avx.cpp" PROPERTIES COMPILE_FLAGS "-mavx -DNO_AVX2")
2019-07-22 23:41:06 +00:00
endif()
if(HAVE_AVX2)
set (SRCS ${SRCS} "${LIBRARY_DIR}/fastops/avx2/ops_avx2.cpp")
set_source_files_properties("${LIBRARY_DIR}/fastops/avx2/ops_avx2.cpp" PROPERTIES COMPILE_FLAGS "-mavx2 -mfma")
2019-07-22 23:41:06 +00:00
endif()
set (SRCS ${SRCS} "${LIBRARY_DIR}/fastops/plain/ops_plain.cpp" "${LIBRARY_DIR}/fastops/core/avx_id.cpp" "${LIBRARY_DIR}/fastops/fastops.cpp")
2019-07-22 23:41:06 +00:00
add_library(fastops ${SRCS})
target_include_directories(fastops SYSTEM PUBLIC "${LIBRARY_DIR}")