ClickHouse/contrib/base64-cmake/CMakeLists.txt

31 lines
1.0 KiB
CMake
Raw Normal View History

2018-10-10 01:04:07 +00:00
SET(LIBRARY_DIR ${ClickHouse_SOURCE_DIR}/contrib/base64)
2019-12-25 19:44:00 +00:00
add_library(base64_scalar OBJECT ${LIBRARY_DIR}/turbob64c.c ${LIBRARY_DIR}/turbob64d.c)
2019-12-31 03:14:57 +00:00
if (ARCH_AMD64)
add_library(base64_ssse3 OBJECT ${LIBRARY_DIR}/turbob64sse.c)
add_library(base64_avx OBJECT ${LIBRARY_DIR}/turbob64sse.c) # This is not a mistake. One file is compiled twice.
add_library(base64_avx2 OBJECT ${LIBRARY_DIR}/turbob64avx2.c)
endif ()
2018-11-02 19:06:05 +00:00
2019-12-25 19:44:00 +00:00
target_compile_options(base64_scalar PRIVATE -falign-loops)
2018-10-11 16:22:50 +00:00
2019-12-31 03:14:57 +00:00
if (ARCH_AMD64)
target_compile_options(base64_ssse3 PRIVATE -mssse3 -falign-loops)
target_compile_options(base64_avx PRIVATE -falign-loops -mavx)
target_compile_options(base64_avx2 PRIVATE -falign-loops -mavx2)
endif ()
if (ARCH_AMD64)
add_library(base64
$<TARGET_OBJECTS:base64_scalar>
$<TARGET_OBJECTS:base64_ssse3>
$<TARGET_OBJECTS:base64_avx>
$<TARGET_OBJECTS:base64_avx2>)
else ()
add_library(base64
$<TARGET_OBJECTS:base64_scalar>)
endif ()
2019-12-25 19:44:00 +00:00
target_include_directories(base64 PUBLIC ${LIBRARY_DIR})