diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-10 21:30:40 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-10 21:30:40 +0000 |
commit | 133a45c109da5310add55824db21af5239951f93 (patch) | |
tree | ba6ac4c0a950a0dda56451944315d66409923918 /contrib/fastutf8/CMakeLists.txt | |
parent | Initial commit. (diff) | |
download | rspamd-133a45c109da5310add55824db21af5239951f93.tar.xz rspamd-133a45c109da5310add55824db21af5239951f93.zip |
Adding upstream version 3.8.1.upstream/3.8.1upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r-- | contrib/fastutf8/CMakeLists.txt | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/contrib/fastutf8/CMakeLists.txt b/contrib/fastutf8/CMakeLists.txt new file mode 100644 index 0000000..2a98ed8 --- /dev/null +++ b/contrib/fastutf8/CMakeLists.txt @@ -0,0 +1,11 @@ +SET(UTFSRC ${CMAKE_CURRENT_SOURCE_DIR}/fastutf8.c) +IF(HAVE_AVX2 AND "${ARCH}" STREQUAL "x86_64") + SET(UTFSRC ${UTFSRC} ${CMAKE_CURRENT_SOURCE_DIR}/avx2.c) + MESSAGE(STATUS "UTF8: AVX2 support is added") +ENDIF() +IF(HAVE_SSE41 AND "${ARCH}" STREQUAL "x86_64") + SET(UTFSRC ${UTFSRC} ${CMAKE_CURRENT_SOURCE_DIR}/sse41.c) + MESSAGE(STATUS "UTF8: SSE41 support is added") +ENDIF() + +ADD_LIBRARY(rspamd-fastutf8 STATIC ${UTFSRC})
\ No newline at end of file |