70 lines
2.1 KiB
CMake
Executable File
70 lines
2.1 KiB
CMake
Executable File
cmake_minimum_required(VERSION 3.14)
|
|
|
|
project(turbobase64 C)
|
|
if (SOURCE_PATH)
|
|
set(CMAKE_SOURCE_DIR ${SOURCE_PATH})
|
|
endif ()
|
|
|
|
#Copyright 2016-2020 Yandex LLC
|
|
# https://github.com/ClickHouse/ClickHouse/blob/master/contrib/base64-cmake/CMakeLists.txt
|
|
#
|
|
#Apache License
|
|
#Version 2.0, January 2004
|
|
#http://www.apache.org/licenses/
|
|
#Yandex code starts
|
|
|
|
SET(LIBRARY_DIR ${CMAKE_SOURCE_DIR})
|
|
|
|
add_library(base64_scalar OBJECT ${LIBRARY_DIR}/turbob64c.c ${LIBRARY_DIR}/turbob64d.c)
|
|
add_library(base64_ssse3 OBJECT ${LIBRARY_DIR}/turbob64sse.c) # This file also contains code for ARM NEON
|
|
|
|
if (ARCH_AMD64)
|
|
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 ()
|
|
|
|
target_compile_options(base64_scalar PRIVATE -falign-loops)
|
|
|
|
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)
|
|
else ()
|
|
target_compile_options(base64_ssse3 PRIVATE -falign-loops)
|
|
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>
|
|
$<TARGET_OBJECTS:base64_ssse3>)
|
|
endif ()
|
|
|
|
# End of Yandex code
|
|
|
|
target_include_directories(base64 SYSTEM PUBLIC $<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}>)
|
|
set_target_properties(base64 PROPERTIES PUBLIC_HEADER "${CMAKE_SOURCE_DIR}/turbob64.h")
|
|
|
|
install(TARGETS base64
|
|
EXPORT base64Config
|
|
RUNTIME DESTINATION "bin"
|
|
LIBRARY DESTINATION "lib"
|
|
ARCHIVE DESTINATION "lib"
|
|
PUBLIC_HEADER DESTINATION "include"
|
|
COMPONENT dev
|
|
)
|
|
|
|
export(TARGETS base64
|
|
NAMESPACE TURBO::
|
|
FILE "share/base64/base64Config.cmake"
|
|
)
|
|
|
|
install(EXPORT base64Config
|
|
DESTINATION "share/base64"
|
|
NAMESPACE TURBO::
|
|
) |