2019-02-04 07:12:25 +00:00
|
|
|
# Copyright (C) 2011-2019 (see AUTHORS file for a list of contributors)
|
2018-12-12 00:37:37 +00:00
|
|
|
#
|
|
|
|
# This file is part of GNSS-SDR.
|
|
|
|
#
|
|
|
|
# GNSS-SDR is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# GNSS-SDR is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with GNSS-SDR. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
# - 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
|
|
|
|
|
|
|
if(LOG4CPP_INCLUDE_DIR)
|
|
|
|
# Already in cache, be silent
|
|
|
|
set(LOG4CPP_FIND_QUIETLY TRUE)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
find_path(LOG4CPP_INCLUDE_DIR log4cpp/Category.hh
|
|
|
|
/opt/local/include
|
|
|
|
/usr/local/include
|
|
|
|
/usr/include
|
|
|
|
${LOG4CPP_ROOT}/include
|
|
|
|
$ENV{LOG4CPP_ROOT}/include
|
|
|
|
)
|
|
|
|
|
|
|
|
set(LOG4CPP_NAMES log4cpp)
|
|
|
|
find_library(LOG4CPP_LIBRARY
|
|
|
|
NAMES ${LOG4CPP_NAMES}
|
|
|
|
HINTS $ENV{GNURADIO_RUNTIME_DIR}/lib
|
|
|
|
${PC_LIBDIR}
|
|
|
|
${CMAKE_INSTALL_PREFIX}/lib/
|
|
|
|
PATHS /usr/local/lib
|
|
|
|
/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
|
|
|
|
/usr/lib64
|
|
|
|
/usr/lib
|
|
|
|
/usr/local/lib
|
|
|
|
/opt/local/lib
|
|
|
|
${LOG4CPP_ROOT}/lib
|
|
|
|
$ENV{LOG4CPP_ROOT}/lib
|
|
|
|
${LOG4CPP_ROOT}/lib64
|
|
|
|
$ENV{LOG4CPP_ROOT}/lib64
|
|
|
|
)
|
|
|
|
|
|
|
|
if(LOG4CPP_INCLUDE_DIR AND LOG4CPP_LIBRARY)
|
|
|
|
set(LOG4CPP_FOUND TRUE)
|
|
|
|
set(LOG4CPP_LIBRARIES ${LOG4CPP_LIBRARY} CACHE INTERNAL "" FORCE)
|
|
|
|
set(LOG4CPP_INCLUDE_DIRS ${LOG4CPP_INCLUDE_DIR} CACHE INTERNAL "" FORCE)
|
|
|
|
else()
|
|
|
|
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)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
include(FindPackageHandleStandardArgs)
|
|
|
|
find_package_handle_standard_args(LOG4CPP DEFAULT_MSG LOG4CPP_INCLUDE_DIRS LOG4CPP_LIBRARIES)
|
2019-02-04 07:12:25 +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}"
|
|
|
|
)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
mark_as_advanced(
|
|
|
|
LOG4CPP_LIBRARIES
|
|
|
|
LOG4CPP_INCLUDE_DIRS
|
|
|
|
)
|