mirror of
https://github.com/opencv/opencv.git
synced 2024-12-16 18:39:12 +08:00
0de26fd78e
Zlib-ng is zlib replacement with optimizations for "next generation" systems. Its optimization may benifits image library decode and encode speed such as libpng. In our tests, if using zlib-ng and libpng combination on a x86_64 machine with AVX2, the time of `imdecode` amd `imencode` will drop 20% approximately. This patch enables zlib-ng's optimization if `CV_DISABLE_OPTIMIZATION` is OFF. Since Zlib-ng can dispatch intrinsics on the fly, port work is much easier. Related discussion: https://github.com/opencv/opencv/issues/22573
20 lines
620 B
CMake
20 lines
620 B
CMake
# fallback-macros.cmake -- CMake fallback macros
|
|
# Copyright (C) 2022 Nathan Moinvaziri
|
|
# Licensed under the Zlib license, see LICENSE.md for details
|
|
|
|
# CMake less than version 3.5.2
|
|
if(NOT COMMAND add_compile_options)
|
|
macro(add_compile_options options)
|
|
string(APPEND CMAKE_C_FLAGS ${options})
|
|
string(APPEND CMAKE_CXX_FLAGS ${options})
|
|
endmacro()
|
|
endif()
|
|
|
|
# CMake less than version 3.14
|
|
if(NOT COMMAND add_link_options)
|
|
macro(add_link_options options)
|
|
string(APPEND CMAKE_EXE_LINKER_FLAGS ${options})
|
|
string(APPEND CMAKE_SHARED_LINKER_FLAGS ${options})
|
|
endmacro()
|
|
endif()
|