early-access version 2853
This commit is contained in:
70
externals/vcpkg/ports/turbobase64/CMakeLists.txt
vendored
Executable file
70
externals/vcpkg/ports/turbobase64/CMakeLists.txt
vendored
Executable file
@@ -0,0 +1,70 @@
|
||||
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::
|
||||
)
|
||||
19
externals/vcpkg/ports/turbobase64/portfile.cmake
vendored
Executable file
19
externals/vcpkg/ports/turbobase64/portfile.cmake
vendored
Executable file
@@ -0,0 +1,19 @@
|
||||
vcpkg_from_github(
|
||||
OUT_SOURCE_PATH SOURCE_PATH
|
||||
REPO powturbo/Turbo-Base64
|
||||
REF 95ba56a9b041f9933f5cd2bbb2ee4e083468c20a
|
||||
SHA512 bacab8ede5e20974207e01c13a93e6d8afc8d08bc84f1da2b6efa1b4d17408cef6cea085e209a8b7d3b2e2a7223a785f8c76aa954c3c787e9b8d891880b63606
|
||||
HEAD_REF master
|
||||
)
|
||||
|
||||
configure_file(${CURRENT_PORT_DIR}/CMakeLists.txt ${SOURCE_PATH}/CMakeLists.txt COPYONLY)
|
||||
|
||||
vcpkg_configure_cmake(
|
||||
SOURCE_PATH ${SOURCE_PATH}
|
||||
PREFER_NINJA
|
||||
)
|
||||
|
||||
vcpkg_install_cmake()
|
||||
|
||||
file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/include ${CURRENT_PACKAGES_DIR}/debug/share)
|
||||
file(INSTALL ${SOURCE_PATH}/LICENSE DESTINATION ${CURRENT_PACKAGES_DIR}/share/${PORT} RENAME copyright)
|
||||
8
externals/vcpkg/ports/turbobase64/vcpkg.json
vendored
Executable file
8
externals/vcpkg/ports/turbobase64/vcpkg.json
vendored
Executable file
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"name": "turbobase64",
|
||||
"version-date": "2020-01-12",
|
||||
"port-version": 2,
|
||||
"description": "Fastest Base64 SIMD/Neon library",
|
||||
"homepage": "https://github.com/powturbo/Turbo-Base64",
|
||||
"supports": "!windows"
|
||||
}
|
||||
Reference in New Issue
Block a user