mirror of
https://github.com/opencv/opencv.git
synced 2024-12-03 00:10:21 +08:00
85923c8f30
Update zlib-ng to 2.2.1 #26113 Release: https://github.com/zlib-ng/zlib-ng/releases/tag/2.2.1 ARM diagnostics patch: https://github.com/zlib-ng/zlib-ng/pull/1774 ### Pull Request Readiness Checklist See details at https://github.com/opencv/opencv/wiki/How_to_contribute#making-a-good-pull-request - [x] I agree to contribute to the project under Apache 2 License. - [x] To the best of my knowledge, the proposed patch is not based on a code under GPL or another license that is incompatible with OpenCV - [x] The PR is proposed to the proper branch - [ ] There is a reference to the original bug report and related work - [ ] There is accuracy test, performance test and test data in opencv_extra repository, if applicable Patch to opencv_extra has the same branch name. - [ ] The feature is well documented and sample code can be built with the project CMake
44 lines
2.1 KiB
CMake
44 lines
2.1 KiB
CMake
# detect-install-dirs.cmake -- Detect install directory parameters
|
|
# Copyright (C) 2021 Hans Kristian Rosbach
|
|
# Licensed under the Zlib license, see LICENSE.md for details
|
|
|
|
# Determine installation directory for executables
|
|
if (DEFINED BIN_INSTALL_DIR)
|
|
set(BIN_INSTALL_DIR "${BIN_INSTALL_DIR}" CACHE PATH "Installation directory for executables (Deprecated)" FORCE)
|
|
set(CMAKE_INSTALL_BINDIR "${BIN_INSTALL_DIR}")
|
|
elseif (DEFINED INSTALL_BIN_DIR)
|
|
set(CMAKE_INSTALL_BINDIR "${INSTALL_BIN_DIR}")
|
|
endif()
|
|
|
|
# Determine installation directory for libraries
|
|
if (DEFINED LIB_INSTALL_DIR)
|
|
set(LIB_INSTALL_DIR "${LIB_INSTALL_DIR}" CACHE PATH "Installation directory for libraries (Deprecated)" FORCE)
|
|
set(CMAKE_INSTALL_LIBDIR "${LIB_INSTALL_DIR}")
|
|
elseif (DEFINED INSTALL_LIB_DIR)
|
|
set(CMAKE_INSTALL_LIBDIR "${INSTALL_LIB_DIR}")
|
|
endif()
|
|
|
|
# Determine installation directory for include files
|
|
if (DEFINED INC_INSTALL_DIR)
|
|
set(INC_INSTALL_DIR "${INC_INSTALL_DIR}" CACHE PATH "Installation directory for headers (Deprecated)" FORCE)
|
|
set(CMAKE_INSTALL_INCLUDEDIR "${INC_INSTALL_DIR}")
|
|
elseif (DEFINED INSTALL_INC_DIR)
|
|
set(CMAKE_INSTALL_INCLUDEDIR "${INSTALL_INC_DIR}")
|
|
endif()
|
|
|
|
# Define GNU standard installation directories
|
|
include(GNUInstallDirs)
|
|
|
|
# Determine installation directory for pkgconfig files
|
|
if (DEFINED PKGCONFIG_INSTALL_DIR)
|
|
set(PKGCONFIG_INSTALL_DIR "${PKGCONFIG_INSTALL_DIR}" CACHE PATH "Installation directory for pkgconfig (.pc) files" FORCE)
|
|
elseif (DEFINED INSTALL_PKGCONFIG_DIR)
|
|
set(PKGCONFIG_INSTALL_DIR "${INSTALL_PKGCONFIG_DIR}" CACHE PATH "Installation directory for pkgconfig (.pc) files" FORCE)
|
|
elseif (DEFINED CMAKE_INSTALL_PKGCONFIGDIR)
|
|
set(PKGCONFIG_INSTALL_DIR "${CMAKE_INSTALL_PKGCONFIGDIR}" CACHE PATH "Installation directory for pkgconfig (.pc) files" FORCE)
|
|
elseif (DEFINED CMAKE_INSTALL_FULL_PKGCONFIGDIR)
|
|
set(PKGCONFIG_INSTALL_DIR "${CMAKE_INSTALL_FULL_PKGCONFIGDIR}" CACHE PATH "Installation directory for pkgconfig (.pc) files" FORCE)
|
|
else()
|
|
set(PKGCONFIG_INSTALL_DIR "${CMAKE_INSTALL_LIBDIR}/pkgconfig" CACHE PATH "Installation directory for pkgconfig (.pc) files")
|
|
endif()
|