2020-12-30 12:35:06 +00:00
|
|
|
# GNSS-SDR is a Global Navigation Satellite System software-defined receiver.
|
2018-12-12 00:37:37 +00:00
|
|
|
# This file is part of GNSS-SDR.
|
|
|
|
#
|
2020-12-30 12:35:06 +00:00
|
|
|
# SPDX-FileCopyrightText: 2011-2020 C. Fernandez-Prades cfernandez(at)cttc.es
|
|
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
2018-12-12 00:37:37 +00:00
|
|
|
|
|
|
|
# - Find Log4cpp
|
|
|
|
# Find the native LOG4CPP includes and library
|
|
|
|
#
|
|
|
|
# LOG4CPP_INCLUDE_DIR - where to find LOG4CPP.h, etc.
|
|
|
|
# LOG4CPP_LIBRARIES - List of libraries when using LOG4CPP.
|
|
|
|
# LOG4CPP_FOUND - True if LOG4CPP found.
|
2019-02-04 07:12:25 +00:00
|
|
|
#
|
|
|
|
# Provides the following imported target:
|
|
|
|
# Log4cpp::log4cpp
|
|
|
|
#
|
2018-12-12 00:37:37 +00:00
|
|
|
|
2019-06-21 00:49:41 +00:00
|
|
|
if(NOT COMMAND feature_summary)
|
|
|
|
include(FeatureSummary)
|
|
|
|
endif()
|
|
|
|
|
2020-11-01 13:35:15 +00:00
|
|
|
if(NOT PKG_CONFIG_FOUND)
|
|
|
|
include(FindPkgConfig)
|
|
|
|
endif()
|
|
|
|
|
2019-06-23 22:24:08 +00:00
|
|
|
pkg_check_modules(PC_LOG4CPP log4cpp QUIET)
|
|
|
|
|
2018-12-12 00:37:37 +00:00
|
|
|
if(LOG4CPP_INCLUDE_DIR)
|
|
|
|
# Already in cache, be silent
|
|
|
|
set(LOG4CPP_FIND_QUIETLY TRUE)
|
|
|
|
endif()
|
|
|
|
|
2020-02-29 13:33:09 +00:00
|
|
|
if(LOG4CPP_ROOT)
|
|
|
|
set(LOG4CPP_ROOT_USER_PROVIDED ${LOG4CPP_ROOT})
|
|
|
|
else()
|
|
|
|
set(LOG4CPP_ROOT_USER_PROVIDED /usr)
|
|
|
|
endif()
|
|
|
|
if(DEFINED ENV{LOG4CPP_ROOT})
|
|
|
|
set(LOG4CPP_ROOT_USER_PROVIDED
|
|
|
|
${LOG4CPP_ROOT_USER_PROVIDED}
|
|
|
|
$ENV{LOG4CPP_ROOT}
|
|
|
|
)
|
|
|
|
endif()
|
|
|
|
set(LOG4CPP_ROOT_USER_PROVIDED
|
|
|
|
${LOG4CPP_ROOT_USER_PROVIDED}
|
|
|
|
${CMAKE_INSTALL_PREFIX}
|
|
|
|
)
|
|
|
|
|
2018-12-12 00:37:37 +00:00
|
|
|
find_path(LOG4CPP_INCLUDE_DIR log4cpp/Category.hh
|
2020-02-29 13:33:09 +00:00
|
|
|
${LOG4CPP_ROOT_USER_PROVIDED}/include
|
|
|
|
/usr/include
|
|
|
|
/usr/local/include
|
|
|
|
/opt/local/include
|
|
|
|
${PC_LOG4CPP_INCLUDEDIR}
|
2018-12-12 00:37:37 +00:00
|
|
|
)
|
|
|
|
|
2019-06-13 13:33:01 +00:00
|
|
|
if(LOG4CPP_INCLUDE_DIR)
|
|
|
|
file(STRINGS ${LOG4CPP_INCLUDE_DIR}/log4cpp/Priority.hh _log4cpp_Priority)
|
|
|
|
set(_log4cpp_cxx17 TRUE)
|
|
|
|
foreach(_loop_var IN LISTS _log4cpp_Priority)
|
|
|
|
string(STRIP "${_loop_var}" _file_line)
|
|
|
|
if("throw(std::invalid_argument);" STREQUAL "${_file_line}")
|
|
|
|
set(_log4cpp_cxx17 FALSE)
|
|
|
|
endif()
|
|
|
|
endforeach()
|
|
|
|
if(${_log4cpp_cxx17})
|
|
|
|
set(LOG4CPP_READY_FOR_CXX17 TRUE)
|
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
|
2018-12-12 00:37:37 +00:00
|
|
|
set(LOG4CPP_NAMES log4cpp)
|
|
|
|
find_library(LOG4CPP_LIBRARY
|
2020-02-29 13:33:09 +00:00
|
|
|
NAMES ${LOG4CPP_NAMES}
|
|
|
|
HINTS ${PC_LOG4CPP_LIBDIR}
|
|
|
|
PATHS ${LOG4CPP_ROOT_USER_PROVIDED}/lib
|
|
|
|
${LOG4CPP_ROOT_USER_PROVIDED}/lib64
|
|
|
|
/usr/lib
|
2019-09-30 12:58:34 +00:00
|
|
|
/usr/lib64
|
2018-12-12 00:37:37 +00:00
|
|
|
/usr/lib/x86_64-linux-gnu
|
|
|
|
/usr/lib/i386-linux-gnu
|
|
|
|
/usr/lib/arm-linux-gnueabihf
|
|
|
|
/usr/lib/arm-linux-gnueabi
|
|
|
|
/usr/lib/aarch64-linux-gnu
|
|
|
|
/usr/lib/mipsel-linux-gnu
|
|
|
|
/usr/lib/mips-linux-gnu
|
|
|
|
/usr/lib/mips64el-linux-gnuabi64
|
|
|
|
/usr/lib/powerpc-linux-gnu
|
|
|
|
/usr/lib/powerpc64-linux-gnu
|
|
|
|
/usr/lib/powerpc64le-linux-gnu
|
|
|
|
/usr/lib/powerpc-linux-gnuspe
|
|
|
|
/usr/lib/hppa-linux-gnu
|
|
|
|
/usr/lib/s390x-linux-gnu
|
|
|
|
/usr/lib/i386-gnu
|
|
|
|
/usr/lib/hppa-linux-gnu
|
|
|
|
/usr/lib/x86_64-kfreebsd-gnu
|
|
|
|
/usr/lib/i386-kfreebsd-gnu
|
|
|
|
/usr/lib/m68k-linux-gnu
|
|
|
|
/usr/lib/sh4-linux-gnu
|
|
|
|
/usr/lib/sparc64-linux-gnu
|
|
|
|
/usr/lib/x86_64-linux-gnux32
|
|
|
|
/usr/lib/alpha-linux-gnu
|
2019-08-10 10:45:40 +00:00
|
|
|
/usr/lib/riscv64-linux-gnu
|
2019-09-30 12:58:34 +00:00
|
|
|
/usr/local/lib
|
|
|
|
/usr/local/lib64
|
2018-12-12 00:37:37 +00:00
|
|
|
/opt/local/lib
|
|
|
|
)
|
|
|
|
|
|
|
|
if(LOG4CPP_INCLUDE_DIR AND LOG4CPP_LIBRARY)
|
2020-02-29 13:33:09 +00:00
|
|
|
set(LOG4CPP_FOUND TRUE)
|
|
|
|
set(LOG4CPP_LIBRARIES ${LOG4CPP_LIBRARY} CACHE INTERNAL "" FORCE)
|
|
|
|
set(LOG4CPP_INCLUDE_DIRS ${LOG4CPP_INCLUDE_DIR} CACHE INTERNAL "" FORCE)
|
2018-12-12 00:37:37 +00:00
|
|
|
else()
|
2020-02-29 13:33:09 +00:00
|
|
|
set(LOG4CPP_FOUND FALSE CACHE INTERNAL "" FORCE)
|
|
|
|
set(LOG4CPP_LIBRARY "" CACHE INTERNAL "" FORCE)
|
|
|
|
set(LOG4CPP_LIBRARIES "" CACHE INTERNAL "" FORCE)
|
|
|
|
set(LOG4CPP_INCLUDE_DIR "" CACHE INTERNAL "" FORCE)
|
|
|
|
set(LOG4CPP_INCLUDE_DIRS "" CACHE INTERNAL "" FORCE)
|
2018-12-12 00:37:37 +00:00
|
|
|
endif()
|
|
|
|
|
|
|
|
include(FindPackageHandleStandardArgs)
|
|
|
|
find_package_handle_standard_args(LOG4CPP DEFAULT_MSG LOG4CPP_INCLUDE_DIRS LOG4CPP_LIBRARIES)
|
2019-02-04 07:12:25 +00:00
|
|
|
|
2019-06-21 00:49:41 +00:00
|
|
|
set_package_properties(LOG4CPP PROPERTIES
|
|
|
|
URL "http://log4cpp.sourceforge.net/"
|
|
|
|
)
|
|
|
|
|
2019-06-23 22:24:08 +00:00
|
|
|
if(LOG4CPP_FOUND AND PC_LOG4CPP_VERSION)
|
|
|
|
set(LOG4CPP_VERSION ${PC_LOG4CPP_VERSION})
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if(LOG4CPP_FOUND AND LOG4CPP_VERSION)
|
|
|
|
if(LOG4CPP_READY_FOR_CXX17)
|
|
|
|
set_package_properties(LOG4CPP PROPERTIES
|
|
|
|
DESCRIPTION "Library of C++ classes for flexible logging (found: v${LOG4CPP_VERSION}, C++17-ready)"
|
|
|
|
)
|
|
|
|
else()
|
|
|
|
set_package_properties(LOG4CPP PROPERTIES
|
|
|
|
DESCRIPTION "Library of C++ classes for flexible logging (found: v${LOG4CPP_VERSION})"
|
|
|
|
)
|
|
|
|
endif()
|
2019-06-21 00:49:41 +00:00
|
|
|
else()
|
|
|
|
set_package_properties(LOG4CPP PROPERTIES
|
2019-06-23 22:24:08 +00:00
|
|
|
DESCRIPTION "Library of C++ classes for flexible logging"
|
2019-06-21 00:49:41 +00:00
|
|
|
)
|
|
|
|
endif()
|
|
|
|
|
2020-03-01 11:29:21 +00:00
|
|
|
if(LOG4CPP_FOUND AND NOT TARGET Log4cpp::log4cpp)
|
|
|
|
add_library(Log4cpp::log4cpp SHARED IMPORTED)
|
|
|
|
set_target_properties(Log4cpp::log4cpp PROPERTIES
|
|
|
|
IMPORTED_LINK_INTERFACE_LANGUAGES "CXX"
|
|
|
|
IMPORTED_LOCATION "${LOG4CPP_LIBRARIES}"
|
|
|
|
INTERFACE_INCLUDE_DIRECTORIES "${LOG4CPP_INCLUDE_DIRS}"
|
|
|
|
INTERFACE_LINK_LIBRARIES "${LOG4CPP_LIBRARIES}"
|
|
|
|
)
|
2019-02-04 07:12:25 +00:00
|
|
|
endif()
|
|
|
|
|
2020-02-29 13:33:09 +00:00
|
|
|
mark_as_advanced(LOG4CPP_LIBRARIES LOG4CPP_INCLUDE_DIRS)
|